欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

反爬中设置随机代理

程序员文章站 2022-06-24 08:56:58
反爬中有一个使用随机代理的 ......

反爬中有一个使用随机代理的

 

 

# 导入随机函数模块
import random

# 构建 user_agent 集合代理
user_agent = [
    'mozilla/4.0 (compatible; msie 7.0; windows nt 6.0; trident/4.0)',
    'mozilla/5.0 (windows nt 6.1; wow64; rv:34.0) gecko/20100101 firefox/34.0',
    'mozilla/5.0 (windows; u; windows nt 5.2) applewebkit/525.13 (khtml, like gecko) version/3.1 safari/525.13',
    'mozilla/4.0 (compatible; msie 8.0; windows nt 6.0; trident/4.0)',
    'mozilla/4.0 (compatible; msie 8.0; windows nt 6.1; win64; x64; trident/4.0)'
]

# 在headers 里生成随机代理
headers = {
    'user-agent' : random.choice(user_agent)
}

print(headers)