标签: python

Python fake-useragent的用法

使用

安装成功后,我们每次发送requests请求时通过random从中随机获取一个随机UserAgent,两行代码即可完成UserAgent的不停更换。

from fake_useragent import UserAgent

headers= {‘User-Agent’:str(UserAgent().random)}
r = requests.get(url, proxies=proxies, headers=headers, timeout=10)
1
2
3
4
更新

我在使用fake_useragent中遇到如下的报错,在起初误认为是部分网站对某些UserAgent的屏蔽导致的fake_useragent调用出错,后来追究下来发现是由于fake_useragent中存储的UserAgent列表发生了变动,而我本地UserAgent的列表未更新所导致的,在更新fake_useragent后报错就消失了。关于这个报错知道更多细节的同学,欢迎在下面留言!

fake_useragent.errors.FakeUserAgentError: Maximum amount of retries reached

更新fake_useragent,在命令行中输入pip install -U fake-useragent即可完成更新,Python的其他包也可以用这种方法完成更新pip install -U 包名。

Python对Windows程序窗口的操作

Python MFC GUI
使用 pywin32编写 windows的GUI (《python 宝典》)
:https://wenku.baidu.com/view/1f4eb95df011f18583d049649b6648d7c0c70830.html

Python win32 库进行内存读写
Python win32库进行内存读写:

游戏辅助:https://www.jianshu.com/p/0bddab537860
植物大战僵尸 辅助:https://www.jianshu.com/p/ee890eb0d8d6
:https://tieba.baidu.com/p/1297024013?red_tag=3286293802

Python 游戏辅助
:https://www.jianshu.com/u/dd32b7845ea9

4、python 找图 找色
一文讲透,经典Python图像处理库,带你领略Pillow的强大魅力:https://baijiahao.baidu.com/s?id=1730140116378756711

关键字:python 找图 找色 || win32gui win32api win32con

python 能做类似于按键精灵 那种桌面找图返回坐标么?:https://www.52pojie.cn/thread-1432042-1-1.html

Python实现按键精灵(二) – 找图找色:https://www.bbsmax.com/A/amd0KBKj5g/

python 操作 winAPI:https://www.cnblogs.com/liming19680104/p/11988565.html

js 正则表达式:*号,最多出现一次。JavaScript正则表达式匹配:不包含某字符或字符串

不包含某字符串(如“hit”)需要特殊处理,不然他会把字母都拆开,去分别判断“h”、“i”、“t”,

/^.hit.$/

/^((?!hit).)*$/

应用:比如想把history模式的路由改为哈希模式,在/hit/后面加#,

就可以这样来替换x=x.replace(/\/hit\//gi, “/hit/#”);

export const wildcardEmailRule = {
pattern: /^[A-z0-9]*\*?[A-z0-9]*$/,
message: “wwwwwwwwwwwwwww”,
trigger: “blur”,
};