Python爬虫获取随机的UserAgent的两种方法
Posted HelloBytes
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python爬虫获取随机的UserAgent的两种方法相关的知识,希望对你有一定的参考价值。
安装库获取随机的UserAgent的两种方法
# 获取随机的UA
‘‘‘
首先安装包
pip install fake_useragent
pip install faker
‘‘‘
# 方法一
from fake_useragent import UserAgent
ua = UserAgent()
headers = {‘User-Agent‘:ua.random}
print(headers)
# 方法二
from faker import Factory
f = Factory.create()
ua = f.user_agent()
print(ua)
以上是关于Python爬虫获取随机的UserAgent的两种方法的主要内容,如果未能解决你的问题,请参考以下文章