Update 网络收集.py

This commit is contained in:
frxz751113
2024-09-19 17:38:29 +08:00
committed by GitHub
parent a99f0e3755
commit 3a5763470d
-2
View File
@@ -476,10 +476,8 @@ def merge_and_filter():
if frame_count >= 50: if frame_count >= 50:
detected_ips[ip_key] = {'status': 'ok'} detected_ips[ip_key] = {'status': 'ok'}
output_file.write(line) output_file.write(line)
valid_line_count += 1
else: else:
detected_ips[ip_key] = {'status': 'fail'} detected_ips[ip_key] = {'status': 'fail'}
print(f"有效的总行数为:{valid_line_count}")
# 合并任意字符加上网络收集.txt 的文件 # 合并任意字符加上网络收集.txt 的文件
all_files = [f for f in os.listdir(os.getcwd()) if f.endswith('网络收集.txt')] all_files = [f for f in os.listdir(os.getcwd()) if f.endswith('网络收集.txt')]
with open(output_file_path, 'a', encoding='utf-8') as main_output: with open(output_file_path, 'a', encoding='utf-8') as main_output: