摘要:
场景 # main.py 部分代码 def _run_login_script(self): import subprocess # 定义 tools 目录下 login.py 脚本的路径 script_path = os.path.join(os.getcwd(), "tools", "login 阅读全文
摘要:
如图 解决 解决方法 安装必要的系统依赖: uwsgi 需要一些构建依赖项,这些依赖项可能默认没有安装。可以通过包管理器安装它们: 执行以下命令来安装所需的包: sudo apt-get update sudo apt-get install python3-dev build-essential 阅读全文
摘要:
步骤 pip install playwright playwright install playwright install-deps 若弹出这个 参考:https://www.cnblogs.com/code3/p/18458533 解决 tip 但是貌似有2s的延迟。。 阅读全文
摘要:
有些登录逆向起来比较麻烦,就用了自动化 import time import json import random from playwright.sync_api import Playwright, sync_playwright, expect # https://xxxx.edu.cn/ap 阅读全文
摘要:
解决 关闭这个连接,然后重新连接即可。 阅读全文
摘要:
import datetime delta_day = 1 day = datetime.date.today() + datetime.timedelta(days=0+delta_day) print(day) # output:2024-10-08 阅读全文
摘要:
import schedule import time def task(): print("任务启动了!") # 安排任务在16:59:59运行 schedule.every().day.at("16:59:59").do(task) while True: schedule.run_pendin 阅读全文
摘要:
推送消息到wx 基本代码 注意: import requests APPTOEKN = "AT_xxxxxxxxxxxxxxxxxxxxxxxxxx" UIDS = [ "UID_xxxxxxxxxxxxxxxxxxxxx", ] def send_message(msg,summary="test 阅读全文