可扩展的Cookies池,用无头浏览器登录并生成cookie供给爬虫使用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
791 B

7 years ago
# Redis数据库地址
7 years ago
REDIS_HOST = 'localhost'
7 years ago
7 years ago
# Redis端口
7 years ago
REDIS_PORT = 6379
7 years ago
# Redis密码,如无填None
7 years ago
REDIS_PASSWORD = 'foobared'
7 years ago
7 years ago
# 产生器使用的浏览器
BROWSER_TYPE = 'Chrome'
7 years ago
7 years ago
# 产生器类,如扩展其他站点,请在此配置
7 years ago
GENERATOR_MAP = {
7 years ago
'weibo': 'WeiboCookiesGenerator'
7 years ago
}
7 years ago
# 测试类,如扩展其他站点,请在此配置
7 years ago
TESTER_MAP = {
7 years ago
'weibo': 'WeiboValidTester'
7 years ago
}
7 years ago
TEST_URL_MAP = {
7 years ago
'weibo': 'https://m.weibo.cn/'
7 years ago
}
7 years ago
# 产生器和验证器循环周期
CYCLE = 120
# API地址和端口
7 years ago
API_HOST = '0.0.0.0'
7 years ago
API_PORT = 5000
7 years ago
# 产生器开关,模拟登录添加Cookies
7 years ago
GENERATOR_PROCESS = False
7 years ago
# 验证器开关,循环检测数据库中Cookies是否可用,不可用删除
7 years ago
VALID_PROCESS = False
7 years ago
# API接口服务
7 years ago
API_PROCESS = True