04 2022 档案

摘要:https://www.autohotkey.com/boards/viewtopic.php?t=17834 Usage: (required AHK v1.1.31+) ; 1. Capture the image to text string. ; 2. Test find the text 阅读全文
posted @ 2022-04-29 16:14 734969 阅读(652) 评论(0) 推荐(0)
摘要:WIN+R ,输入SnippingTool 右键:属性可以选择快捷键F8 之后另存为:保存成 c:\你的素材.png 就好了 ~~ 阅读全文
posted @ 2022-04-19 17:30 734969 阅读(714) 评论(0) 推荐(0)
摘要:1、SETUP_DIR = 根目录 2、datas=[(SETUP_DIR+'common\\jscracker','common\\jscracker'),(SETUP_DIR+'config','config'),(SETUP_DIR+'ui','ui'),(SETUP_DIR+'tmp','t 阅读全文
posted @ 2022-04-17 10:54 734969 阅读(264) 评论(0) 推荐(0)
摘要:转载于 YanHua_jake 于 2018-09-02 18:46:30 发布:https://blog.csdn.net/weixin_42052836/article/details/82315118 使用Pyinstaller打包Python项目包含了大量的坑,这篇文章总结实践得到的Pyin 阅读全文
posted @ 2022-04-17 08:59 734969 阅读(928) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/xiaobaibailongma/p/13061701.html 1、 desired_caps = {'platformName': 'Windows', 'deviceName': 'WindowsPC', 'ms:waitForAppLaunch 阅读全文
posted @ 2022-04-16 09:00 734969 阅读(196) 评论(0) 推荐(0)
摘要:tips: 1、pyinstaller -D -c main.py 可以打开win的控制台,查找错误pyinstaller -D -w start.spec 2、错误基本是文件夹错误,或者代码误引用外部文件,或者路径问题 3、gui界面打开多个页面是线程问题: 在main.py里面增加如下代码: i 阅读全文
posted @ 2022-04-15 19:03 734969 阅读(769) 评论(0) 推荐(0)
摘要:1. Ahk是什么 Ahk全称AutoHotkey,是一个强大的、简单易学的,Windows终极自动化脚本语言。-- 来自官网 Ahk可以用来映射快捷键,或使用快捷键来完成各种自动化操作,功能十分强大。 2. 下载安装 官网地址:https://www.autohotkey.com/ Ahk2.0 阅读全文
posted @ 2022-04-15 16:29 734969 阅读(3277) 评论(0) 推荐(0)
摘要:在爬取一个小站时,遇到了前几十条网页能顺利爬取,但突然报错的情况。报错信息如下:Message=HTTPConnectionPool(host=‘pub.sinoss.net’, port=80): Max retries exceeded with url: /portal/webgate/Cmd 阅读全文
posted @ 2022-04-10 21:51 734969 阅读(3381) 评论(0) 推荐(0)
摘要:1、两种思路: ①不要去做渲染,也就是直接请求原始页面。然后用lxml或者BS去做解析。 ②使用Selenium模拟浏览器请求,然后再做解析。 2、问题python requests (Caused by SSLError(SSLEOFError(8, ‘EOF occurred in violat 阅读全文
posted @ 2022-04-10 21:48 734969 阅读(83) 评论(0) 推荐(0)