# ProxyPool-1 **Repository Path**: kwff/ProxyPool-1 ## Basic Information - **Project Name**: ProxyPool-1 - **Description**: Proxy Pool - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-08 - **Last Updated**: 2026-03-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ProxyPool ## 安装 ### 安装Python 至少Python3.5以上 ### 安装Redis 安装好之后将Redis服务开启 ### 配置代理池 ``` cd proxypool ``` 进入proxypool目录,修改settings.py文件 PASSWORD为Redis密码,如果为空,则设置为None #### 安装依赖 ``` pip3 install -r requirements.txt ``` #### 打开代理池和API ``` python3 run.py ``` ## 获取代理 利用requests获取方法如下 ```python import requests PROXY_POOL_URL = 'http://localhost:5555/random' def get_proxy(): try: response = requests.get(PROXY_POOL_URL) if response.status_code == 200: return response.text except ConnectionError: return None ```