python cookie池_scc-cookie-pool首页、文档和下载 - 基于 Python 和 Redis 的 Cookie 池 - OSCHINA - 中文开源技术交流社区...

海新霁
2023-12-01

基于 Python 和 Redis 的 Cookie 池:scc-cookie-pool

主要应对场景是cookie由另外独立机制单独生成,不需要自动生成的场景。

依赖环境如下

python>=3.0

requests>=2.13.0

redis>=2.10.5

Flask>=0.12.1

0环境初始化脚本

chmod +x install.sh

sh install.sh

配置

[uwsgi]

http = :8080

wsgi-file = run.py

callable = app

processes = 2

threads = 50

master = true

pidfile = coopool.pid

运行

开发环境:python3 run.py

生产环境:uwsgi -d --ini coopool.ini

接口

restfull接口,响应格式如下:

{

"status":"1",

"msg":"成功",

"data":1

}

status:状态1成功0失败

msg:状态说明

data:响应数据,根据不同接口数据类型不同

注册

POST http://host:port//register

参数:

{

"validate_url":"http://host:port/index",

"alert_email":"a@c.com.b@d.com"

}

添加

POST http://host:port//add

参数:

{

"cookie":"_ga=GA1.2.2068545466.1534464283; xn_dvid_kf_20049=2FB1BB-5425381E-C994-6182-6357-5EC6070D830D; JSESSIONID=node01pvm6qovnp0o0126xk4nvddbm7384.node0"

}

获取

GET http://host:port//random

统计

GET http://host:port//count

 类似资料: