cwjokaka / ok_ip_proxy_pool

🍿爬虫代理IP池(proxy pool) python🍟一个还ok的IP代理池
MIT License
251 stars 67 forks source link

如何实现随机代理 #7

Open U188 opened 3 years ago

U188 commented 3 years ago

get一个代理时 可以实现在池中随机获取一个代理的功能吗

lvwuwei commented 3 years ago

import requests

本地端口ip地址获取

PROXY_POOL_URL = 'http://localhost:8080/random'

def get_proxy(): try:

访问程序提供的ip地址获取链接

    response = requests.get(PROXY_POOL_URL)
    #如果获取成功,返回获取的ip地址
    if response.status_code == 200:
        return response.text
except ConnectionError:
    return None