python 스 캔 로그 키워드 예시
잔말 말고 코드 를 달 아 라.
환경:win 10+python 2.7.14
#-*- encoding: utf-8 -*-
#author : beihuijie
#version 1.1
import re
import sys
import os
import countTime
def getParameters():
'''
get parameters from console command
'''
with open(sys.argv[1], "r") as fread:
lines = fread.readlines()
keywords=[]
for line in lines:
temp = line.split(', ')
keywords.append(temp)
for i in range(0, (len(keywords[0]) - 1)):
print ' Keyword = %s' % keywords[0][i]
return keywords[0]
def isFileExists(strfile):
'''
check the file whether exists
'''
return os.path.isfile(strfile)
def Search(keyword, filename):
'''
search the keyword in a assign file
'''
if(isFileExists(filename) == False):
print 'Input filepath is wrong,please check again!'
sys.exit()
linenum = 1
findtime = 0
with open(filename, 'r') as fread:
lines = fread.readlines()
for line in lines:
rs = re.findall(keyword, line, re.IGNORECASE)
if rs:
#output linenum of keyword place
sys.stdout.write('line:%d '%linenum)
lsstr = line.split(keyword)
strlength = len(lsstr)
findtime = findtime + 1
#print strlength
for i in range(strlength):
if(i < (strlength - 1)):
sys.stdout.write(lsstr[i].strip())
sys.stdout.write(keyword)
else:
sys.stdout.write(lsstr[i].strip() + '
')
linenum = linenum + 1
print '+----------------------------------------------------------------------------+'
print (' Search result: find keyword: %s %d times'%(keyword, findtime))
print '+----------------------------------------------------------------------------+'
def executeSearch():
'''
this is a execute search method
'''
ls = getParameters()
start = countTime.getTime()
parameter_number = len(ls)
print 'Filename = %s ' % ls[parameter_number - 1]
print '--------------------start search-------------------------'
if(parameter_number >= 2):
for i in range(parameter_number - 1):
Search(ls[i], ls[parameter_number - 1])
else:
print 'There is a parameter error occured in executeSearch()!'
end = countTime.getTime()
print '+----------------------------------------------------------------------------+'
print ' Total cost time: %s'%countTime.formatTime(end - start)
print '+============================================================================+'
if __name__=='__main__':
executeSearch()
countTime.py
#-*- encoding: utf-8 -*-
#author : beihuijie
#version 1.1
import datetime
import time
def getTime():
'''
return time is format of time(unit is second)
'''
return time.time()
def getCPUClockTime():
'''
return time is CPU Clock time
'''
return time.clock()
def formatTime(timevalue):
'''
format the time numbers
'''
hour = 0
minute = 0
second = 0
if timevalue > 0:
#count hour
hour = timevalue // 3600
remain = timevalue % 3600
#count minute
minute = remain // 60
remain = remain % 60
#count second
second = round(remain, 3)
return '%.0fh:%.0fm:%.3fs'%(hour, minute, second)
if __name__=='__main__':
value = 134.45632
print value
print formatTime(value)
키워드 와 스 캔 된 로그 경로 정 보 를 파일 에 기록 하고 쉼표+빈 칸 으로 구분 합 니 다.예 를 들 어"로그 경로 정 보 를 마지막 으로 합 니 다."형식 은 다음 과 같 습 니 다.
anr, dalvikvm: Could not find class 'android.app.usage., panic, C:\Users\BHJ\logcat1.log
실행 결과:이상 의 python 스 캔 로그 키 워드 를 실현 하 는 예 는 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저희 도 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.