码迷,mamicode.com
首页 > 其他好文 > 详细

操作文件-取出一个60s内log日志中ip访问次数超过100次的ip

时间:2019-09-25 18:42:48      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:访问   日志   print   %s   ip访问   作文件   while   超过   coding   

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

标签:访问   日志   print   %s   ip访问   作文件   while   超过   coding   

原文地址:https://www.cnblogs.com/fandonghua/p/11586600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!