域名爆红检测小工具,方便做识别批量检查,作为另一种思路 #!/usr/bin/env python3 # _*_ coding:utf-8 _*_ import json import time import requests def check_file(file): str_dump = [] line_len = 100 with open(file, 'r') as f1: for line in f1: line = line.r...