remove top50

This commit is contained in:
Johnshall
2021-12-06 18:46:31 +08:00
parent 308685621d
commit f06e7dad03
2 changed files with 6 additions and 6 deletions

View File

@@ -33,17 +33,17 @@ GFWList 不能无损转换为 SR 规则,所以这里是对 GFWList 的补充
**resultant/top50_direct.list**
域名列表,由 `top50.py` 自动生成。记录着前 50 网站中所有可直连网站的域名。
域名列表,由 `top500.py` 自动生成。记录着前 50 网站中所有可直连网站的域名。
**resultant/top50_proxy.list**
域名列表,由 `top50.py` 自动生成。记录着前 50 网站中无法直连网站的域名。
域名列表,由 `top500.py` 自动生成。记录着前 50 网站中无法直连网站的域名。
其中未包括含有 `google` 关键字的域名,并且首页请求时间大于 10 秒也视为无法直连。
**top50.py**
**top500.py**
脚本,运行所需时间较长。自动爬取生成 `top50_*.list` 文件。
脚本,运行所需时间较长。自动爬取生成 `top500_*.list` 文件。
-----------------------------------

View File

@@ -55,8 +55,8 @@ values = {}
values['build_time'] = time.strftime("%Y-%m-%d %H:%M:%S")
values['top500_proxy'] = getRulesStringFromFile('resultant/top50_proxy.list', 'Proxy')
values['top500_direct'] = getRulesStringFromFile('resultant/top50_direct.list', 'Direct')
values['top500_proxy'] = getRulesStringFromFile('resultant/top500_proxy.list', 'Proxy')
values['top500_direct'] = getRulesStringFromFile('resultant/top500_direct.list', 'Direct')
values['ad'] = getRulesStringFromFile('resultant/ad.list', 'Reject')