简单python日志抓取脚本

#!/usr/bin/python
#coding:utf-8
import re
x=open('access1.log')
abc={}
for i in x:
m=re.search('firefox',i)
if m:
key=m.group()
abc[key]=abc.get(key,0)+1
print abc
posted @ 2018-03-23 18:57  virlix  阅读(787)  评论(0编辑  收藏  举报