摘要: 我们测试下3种插入操作方式的性能情况(以10000次为例): 1、每条数据都进行execute和commit 2、多次执行exectue,最后commit 3、使用executemany执行1次,然后commit1次 示例: # coding:utf-8 import time import pym 阅读全文
posted @ 2021-11-19 19:49 eliwang 阅读(293) 评论(0) 推荐(1) 编辑
摘要: pdfplumber不仅可以解析提取pdf文件中的文本,还可以提取表格 一、安装 pip3 install pdfplumber 二、使用 # coding:utf-8 import pdfplumber with pdfplumber.open('./test.pdf') as pdf: # 遍历 阅读全文
posted @ 2021-11-19 19:15 eliwang 阅读(3447) 评论(0) 推荐(0) 编辑