03 2023 档案
摘要:1. 安装PyPDF2 pip3 install PyPDF2 2. 分割 from PyPDF2 import PdfReader, PdfWriter file = input() pdf_reader = PdfReader(file) for i in range(len(pdf_reade
阅读全文
摘要:1. 安装 pip3 install paddleocr -i https://pypi.tuna.tsinghua.edu.cn/simple pip3 install paddlepaddle -i https://mirror.baidu.com/pypi/simple 2. 使用 from
阅读全文
摘要:1. 安装tesseract-ocr 下载链接:https://digi.bib.uni-mannheim.de/tesseract/ 安装后添加环境变量 测试安装情况 2. 安装pytesseract pip3 install pytesseract -i https://pypi.tuna.ts
阅读全文
摘要:先找一个网站,然后使用requests获取返回值并使用beautifulsoup解析,最后使用pandas导出excel文件 脚本如下 import pandas as pd import requests import json from tqdm import trange from bs4 i
阅读全文
摘要:1. 脚本如下 需要引入jquery.min.js,FileSaver.min.js和jquery.wordexport.js(注意顺序) <!DOCTYPE html> <html> <head> <script src="https://cdn.bootcdn.net/ajax/libs/jqu
阅读全文
摘要:1. ddddocr安装 建议使用国内镜像安装 pip3 install ddddocr -i https://pypi.tuna.tsinghua.edu.cn/simple 2. 图片验证码 import ddddocr ocr = ddddocr.DdddOcr(show_ad=False)
阅读全文
摘要:import requests import m3u8 import os from multiprocessing.dummy import Pool from tqdm import tqdm from retry import retry from urllib.parse import ur
阅读全文
摘要:1. 连接数据库和创建游标 import sqlite3 conn = sqlite3.connect("test.db") cur = conn.cursor() 2. 建表 sql = "CREATE TABLE test_table(id INTEGER PRIMARY KEY,name TE
阅读全文
摘要:1. 需要先安装两个模块 pip3 install fitz pip3 install PyMuPDF 2. 脚本如下 import fitz import os from functools import cmp_to_key # 过滤掉当前目录除jpg以外的文件 def file_filter(
阅读全文
摘要:1. json转xlsx <html lang="zh"> <head> <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.3/jquery.min.js"></script> <script src="https://cdn.boo
阅读全文
摘要:1. popup.html <!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <meta name="viewport" content="width=de
阅读全文
摘要:1. 安装pyodbc pip3 install pyodbc -i https://pypi.tuna.tsinghua.edu.cn/simple 2. 安装accessdatabaseengine https://www.microsoft.com/zh-cn/download/details
阅读全文
摘要:### 使用端口映射和nginx代理实现外网通过公网ip访问内网网站 #### 1. 拥有一个公网ip 没有公网ip后面可以不用看了 #### 2. 端口映射 进入路由器后台管理页面,配置端口映射,输入外部端口、内网ip地址、内部端口 #### 3. nginx反向代理 1. 在官网下载nginx
阅读全文
摘要:var import_css = document.createElement("link"); import_css.setAttribute("rel","stylesheet"); import_css.setAttribute("href", "https://cdn.bootcdn.net
阅读全文