方法一
- 更新fake_useragent
pip3 install -U fake_useragent
方法二
- 下载fake_useragent.json文件
- 我的版本是0.1.11,所以下载的就是0.1.11.json
- 下载地址,提取码是77h3
- 下载成功后直接将文件放在项目同级目录下
from fake_useragent import USERAGENT
location = os.getcwd() + ‘/fake_useragent_0.1.11.json’
ua = UserAgent(path=location)
self.headers = {‘User-Agent’: ua.random}