上一页 1 2 3 4 5 6 ··· 38 下一页
摘要: 场景 # main.py 部分代码 def _run_login_script(self): import subprocess # 定义 tools 目录下 login.py 脚本的路径 script_path = os.path.join(os.getcwd(), "tools", "login 阅读全文
posted @ 2024-11-04 01:47 __username 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 如图 解决 解决方法 安装必要的系统依赖: uwsgi 需要一些构建依赖项,这些依赖项可能默认没有安装。可以通过包管理器安装它们: 执行以下命令来安装所需的包: sudo apt-get update sudo apt-get install python3-dev build-essential 阅读全文
posted @ 2024-10-16 23:58 __username 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 步骤 pip install playwright playwright install playwright install-deps 若弹出这个 参考:https://www.cnblogs.com/code3/p/18458533 解决 tip 但是貌似有2s的延迟。。 阅读全文
posted @ 2024-10-12 10:46 __username 阅读(18) 评论(0) 推荐(0) 编辑
摘要: playwright自动登录获取cookie/ck 有些登录逆向起来比较麻烦,就用了自动化 import time import json import random from playwright.sync_api import Playwright, sync_playwright, expect # https://xxxx.edu.cn/ap 阅读全文
posted @ 2024-10-11 16:42 __username 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 解决 关闭这个连接,然后重新连接即可。 阅读全文
posted @ 2024-10-11 15:42 __username 阅读(32) 评论(0) 推荐(0) 编辑
摘要: import datetime delta_day = 1 day = datetime.date.today() + datetime.timedelta(days=0+delta_day) print(day) # output:2024-10-08 阅读全文
posted @ 2024-10-07 19:40 __username 阅读(6) 评论(0) 推荐(0) 编辑
摘要: import schedule import time def task(): print("任务启动了!") # 安排任务在16:59:59运行 schedule.every().day.at("16:59:59").do(task) while True: schedule.run_pendin 阅读全文
posted @ 2024-10-06 12:20 __username 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 推送消息到wx 基本代码 注意: import requests APPTOEKN = "AT_xxxxxxxxxxxxxxxxxxxxxxxxxx" UIDS = [ "UID_xxxxxxxxxxxxxxxxxxxxx", ] def send_message(msg,summary="test 阅读全文
posted @ 2024-10-03 12:21 __username 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 查找哪个进程占用了端口: 使用 lsof 或 netstat 命令来查找哪个进程占用了特定端口。例如,如果想查找占用端口 8080 的进程,可以使用以下命令: 使用 sudo lsof -i :8080 或 sudo netstat -tulpn | grep :8080 这些命令将显示占用指定端口 阅读全文
posted @ 2024-09-26 11:04 __username 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 基本操作 可以编辑,查看日志,执行测试等等 阅读全文
posted @ 2024-09-26 10:31 __username 阅读(25) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 38 下一页

本文作者:DIVMonster

本文链接:https://www.cnblogs.com/guangzan/p/12886111.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。