上一页 1 2 3 4 5 6 7 8 ··· 21 下一页
摘要: from playwright.sync_api import sync_playwright import os class Tool: def __init__(self, user_data_dir, executable_path): playwright = sync_playwright 阅读全文
posted @ 2023-10-26 21:10 冰底熊 阅读(1818) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-10-08 09:03 冰底熊 阅读(0) 评论(0) 推荐(0) 编辑
摘要: import json # import pandas as pd from openpyxl import Workbook from openpyxl.drawing.image import Image excel_col_map = { 1: "A", 2: "B", 3: "C", 4: 阅读全文
posted @ 2023-09-17 21:57 冰底熊 阅读(16) 评论(0) 推荐(0) 编辑
摘要: import jsonimport sqlite3import pandas as pdclass SqliteTool: def __init__(self, db_path): self.db_path = db_path self.conn = sqlite3.connect(self.db_ 阅读全文
posted @ 2023-09-03 11:44 冰底熊 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 参考:https://zhuanlan.zhihu.com/p/425148959 1. 安装pyqt5 模块 # pyqt5 安装 pip3 install pyqt5 -i https://mirrors.aliuyun.com/pypi/simple # Qt Designer pip3 in 阅读全文
posted @ 2023-08-22 22:52 冰底熊 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1. 安装 pip install pyinstaller 注意项目开发时,最好先创建一个虚拟环境。 2.基本命令和参数 # 1.1依赖的文件,打包进exe pyinstaller --hidden-import your_module your_script.py pyinstaller --hi 阅读全文
posted @ 2023-08-22 20:35 冰底熊 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 一. 提示词 1. 正向提示词 正面: (masterpiece:1.2), best quality, masterpiece, original, extremely detailed wallpaper, perfect lighting,(extremely detailed CG:1.2) 阅读全文
posted @ 2023-08-18 20:47 冰底熊 阅读(4280) 评论(0) 推荐(0) 编辑
摘要: pyspark学习官网:https://spark.apache.org/docs/latest/api/python/index.html 一.环境搭建 参考官网:https://spark.apache.org/docs/latest/api/python/user_guide/python_p 阅读全文
posted @ 2023-08-03 23:33 冰底熊 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 一 安装 pip install playwright pip install pytest-playwright playwright install #安装chouim 默认把浏览器驱动下载到: C:\Users\xiake\AppData\Local\ C:\Users\xiake\AppDa 阅读全文
posted @ 2023-08-02 23:08 冰底熊 阅读(143) 评论(0) 推荐(0) 编辑
摘要: import os from win32com import client def create_chrome(name,num): chrome_path="C:\Program Files\Google\Chrome\Application\chrome.exe" user_dir_data=f 阅读全文
posted @ 2023-05-29 22:21 冰底熊 阅读(159) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 21 下一页