基于 Python 协程 + Redis 实现的简单的代理池维护,及代理 IP 抓取服务
- HTTP/HTTPS 检测
- 协程实现
- Web Api 接口支持
- Docker Support
- Custom check rule Support
- TSDB Support
- More api Support
环境依赖 Python 3.6 +
- 克隆
git clone https://github.com/pjialin/pyproxy-async
cd pyproxy-async
- 安装依赖
pip install -r requirements.txt
- 完善配置文件
cp config.toml.example config.toml
- 启动
python main.py
- 拉取镜像
docker pull pjialin/pyproxy-async:latest
- 下载配置文件
curl -o config.toml https://raw.githubusercontent.com/pjialin/pyproxy-async/master/config.toml.example
- 启动
docker run -d -v $(PWD)/config.toml:/code/config.toml -v pyproxy-data:/code/data --name pyproxy pjialin/pyproxy-async:latest
启动完成之后,访问 127.0.0.1:8080/get_ip
(配置文件中的端口),即可获得一个随机的 IP, 如
# curl https://127.0.0.1:8080/get_ip
{"ip":"213.6.45.18","port":"39252","http":"https://213.6.45.18:39252"}
# 支持过滤条件 https,如
curl https://127.0.0.1:8080/get_ip?https=1
文件
- 将文件命名为
*.ip.txt
,如new.ip.txt
,并放在根目录下,文件格式为host:port
,如
127.0.0.1:80
127.0.0.1:8080
- 加载到 IP 池中
python load.py [file_name] # 默认加载所有 *.ip.txt 文件
从 Url 中加载
python load.py url # 如 python load.py https://ser.com/ip 支持任意文本,程序通过正则进行匹配
增加新的 IP 抓取服务非常简单,只需要定义好要抓取的页面和对应的解析器,框架会自动加载并进行抓取。
在 src/sites
目录中提供了一个示例文件,site.py.example,供参考
目前支持使用同一个 Redis 地址,实现集群 IP 检测以及抓取