摘要: 最近在看到一个之前做的sqlite数据库时发现忘了table名叫什么了,所以找了找发现可以直接用python查询,记录一下 ``` import sqlite3 conn = sqlite3.connect('test.db') cur = conn.cursor() sql = "select * 阅读全文
posted @ 2023-06-08 20:50 wstong 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 最近在做bytes转str时,出现报错 ```py str(test, encoding='utf-8') ``` 改成 GB2312、gbk、ISO-8859-1 就没报错 ``` str(test, encoding='GB2312') str(test, encoding='gbk') str 阅读全文
posted @ 2023-06-08 19:26 wstong 阅读(27) 评论(0) 推荐(0) 编辑
摘要: ``` 姓名: 张三性别: 女身份证: 44044019990217444X体检日期: 20230530识别号: 2023053044044019990217444X 打印 ``` ![image](https://img2023.cnblogs.com/blog/3130057/202308/31 阅读全文
posted @ 2023-05-30 23:03 wstong 阅读(183) 评论(0) 推荐(0) 编辑
摘要: ### 1. 安装相关库和下载相关文件 ``` pip3 install selenium pip3 install msedge-selenium-tools ``` 在 https://developer.microsoft.com/zh-cn/microsoft-edge/tools/webd 阅读全文
posted @ 2023-05-22 18:55 wstong 阅读(512) 评论(0) 推荐(0) 编辑
摘要: pip3 install moviepy -i https://pypi.tuna.tsinghua.edu.cn/simple from moviepy.audio.io.AudioFileClip import AudioFileClip from moviepy.editor import c 阅读全文
posted @ 2023-05-15 13:02 wstong 阅读(330) 评论(0) 推荐(0) 编辑
摘要: pip3 install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple pip3 install PyQt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simple 安装后可以 C:\Users\X\A 阅读全文
posted @ 2023-05-10 10:02 wstong 阅读(15) 评论(0) 推荐(0) 编辑
摘要: pip3 install pycryptodome 在安装pycryptodome使用时出现No module named 'Crypto'报错 需要进入安装路径 \Python\Python39\Lib\site-packages 将 crypto 改成 Crypto 即可解决问题 阅读全文
posted @ 2023-05-07 09:45 wstong 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 可以使用微信截图等工具查看需要删除水印的rgb值,然后根据rgb值去编写判断函数,判断该像素点是否置为白色 pip3 install fitz pip3 install pillow pip3 install tqdm pip3 install pymupdf 1. pdf转为图片并去除水印 imp 阅读全文
posted @ 2023-05-06 23:20 wstong 阅读(907) 评论(1) 推荐(1) 编辑
摘要: 1. 安装pdfkit pip3 install pdfkit 2. 安装wkhtmltopdf 下载wkhtmltopdf安装包 https://wkhtmltopdf.org/downloads.html 安装后在系统Path添加wkhtmltopdf的bin路径 3. 简单使用 将本地html 阅读全文
posted @ 2023-04-12 12:47 wstong 阅读(183) 评论(0) 推荐(0) 编辑
摘要: import datetime now = datetime.datetime.now() # now = datetime.datetime(2023,4,9) now.strftime('%Y-%m-%d %H:%M:%S') # 2023-04-09 21:00:41 # 加7天 delta7 阅读全文
posted @ 2023-04-09 21:10 wstong 阅读(141) 评论(0) 推荐(0) 编辑