摘要: 关于使用python将pdf转图片,网上大部分教程在讲pdf2image包 https://pypi.org/project/pdf2image/ 它需要用到一个poppler的程序,但是给的下载链接都过期了,去github下载最新项目发现路径下只有Library、share https://gh. 阅读全文
posted @ 2024-05-18 09:45 anyiya 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 我说想要一段实现了 当发现windows桌面上冒出新窗口就截图保存的功能,AI写的,测了下能用。 # pip install pyautogui pywin32 import time import win32gui import pyautogui def capture_window_scree 阅读全文
posted @ 2024-04-15 15:39 anyiya 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 每次从数据库导出数据交付产品的时候常需要把json拍成excel """ json_to_excel.py ~~~~~~~ json文件转换为excel文件(xlsx) 注:最多容纳1048576行数据 """ import os import sys import json import open 阅读全文
posted @ 2024-04-11 19:55 anyiya 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-01-03 00:03 anyiya 阅读(5) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-01-02 23:35 anyiya 阅读(4) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-12-11 20:19 anyiya 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Ubuntu22.04 全程root用户 安装vnc和图形化界面 # 更新 apt update # 安装桌面环境 sudo apt install xfce4 xfce4-goodies # 安装vncserver apt install tightvncserver 安装noVNC git cl 阅读全文
posted @ 2023-09-22 14:19 anyiya 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Ubuntu22.04 全程root用户 安装 apt update apt install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common curl -fsSL https://d 阅读全文
posted @ 2023-09-22 14:14 anyiya 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Ubuntu22.04 全程root用户 一、安装 apt-get install -y openjdk-11-jdk # 将存储库密钥添加到系统 wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key 阅读全文
posted @ 2023-09-22 14:11 anyiya 阅读(12) 评论(0) 推荐(0) 编辑
摘要: main.py负责接收请求,异步起线程调用高度离散的B(a、b、c...).py类文件,B(a、b、c...).py类文件在执行结束后会统一调用C.py文件中的一个函数规范处理结果,C.py本来的用途是解耦提高代码复用,但在高并发情况下出现了数据冲突的问题。即只有B(a).py才会产生的结果给写进了 阅读全文
posted @ 2023-09-22 11:01 anyiya 阅读(47) 评论(0) 推荐(0) 编辑