私は次のような大きなログファイルへのフィルターを作成しようとします
Fri Oct 5 00:55:45 2012 [pid 2766] CONNECT: Client "157.82.250.217"
Fri Oct 5 00:55:45 2012 [pid 2765] [ftp] OK LOGIN: Client "157.82.250.217", anon password "mozilla@example.com"
Fri Oct 5 00:56:05 2012 [pid 2767] [ftp] FAIL DOWNLOAD: Client "157.82.250.217", "/pub/10.5524/100001_101000/100036/Gene_catalogue/Gene_catalogue.pep", 1638400 bytes, 81.81Kbyte/sec
Fri Oct 5 00:57:27 2012 [pid 3056] CONNECT: Client "157.82.250.217"
Fri Oct 5 00:57:27 2012 [pid 3055] [ftp] OK LOGIN: Client "157.82.250.217", anon password "-wget@"
IPアドレスを http://www.ip-adress.comに入力して、157.82.250.217->東京大学のような組織名を取得し、IPアドレスの後ろに東京大学を追加します。
ウェブサイトはhttp://www.ip-adress.com/ip_tracer/157.XX.xxx.xx で、ソースコードは次のようになっています。
<th>ISP of this IP [<a href="/isp" target="_self">?</a>]:</th>
<td>
University of Tokyo</td>
</tr>
<tr class="odd">
<th>Organization:</th>
<td>
University of Tokyo</td>
</tr>
<tr class="even">
私はPythonの初心者です、フィルター時間のためにいくつか書きます、そしてあなたは私が中に関数を追加するのを手伝ってくれますか
import time
f= open("/opt/CLiMB/Storage1/log/vsftp.log")
def OnlyRecent(line):
if time.strptime(line.split("[")[0].strip(),"%a %b %d %H:%M:%S %Y")> time.gmtime(time.time()-(60*60*24*7)):
return True
return False
filename= time.strftime('%Y%m%d')+'.log'
f1= open(filename,'w')
for line in f:
if OnlyRecent(line):
print line
f1.write(line)
f.close()
f1.close()
ありがとう!!