操作文件-取出一个60s内log日志中ip访问次数超过100次的ip
Posted fandonghua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了操作文件-取出一个60s内log日志中ip访问次数超过100次的ip相关的知识,希望对你有一定的参考价值。
import time
a=0
while True:
d=
f = open(r"/Users/**juan/Downloads/access.log",encoding="utf-8")
f.seek(a)
for line in f:
if line.split() !="":
f1=line.split(" ")[0]
if f1 not in d:
d[f1]=1
else:
d[f1] += 1
a=f.tell()
print()
for f1 in d:
if d.get(f1) > 100:
print(" %s 出现的次数超过100次"%f1)
time.sleep(60)
以上是关于操作文件-取出一个60s内log日志中ip访问次数超过100次的ip的主要内容,如果未能解决你的问题,请参考以下文章