I've run into an issue while coding the next code:
from datetime import datetime, timedelta
def find_last_index(file_rec):
time = datetime.now() - timedelta(hours=2)
file_content = file_rec
while True:
ind = file_content.find(time.strftime("%m-%d"))
date_obj = datetime.strptime(file_content[ind:13], '%m-%d %H:%M:%S')
if time.hour > date_obj.hour:
file_content = file_content[ind+5:]
ind = file_content.find("12-22", ind)
return ind
else:
file_content = file_content[ind + 1:]
file_name = raw_input("Enter File Path From this file's dir: ")
read_file = open(file_name, 'r')
content = read_file.read()
read_file.close()
lastindex = find_last_index(content)
print content[:lastindex]
content = input()
write_file = open("ResultFile.txt", "w")
write_file.write(content[:lastindex])
write_file.close()
The code is supposed to take a log-file looks like that:
12-22 20:14:15.972 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.972 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.972 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.972 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.973 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.973 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.973 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.973 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.973 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.974 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.974 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.974 26560 27796 D Robocol : no packet received: NullPointerException
12-22 20:14:15.9
Each line starts with the date and time. I would like to insert into a new file only the statements from 2 hours ago until the current time. It would be awesome if someone would help me to solve it.
I can't resist suggesting the use of the arrow module for manipulating dates. In many cases it makes life easier. Heres what I offer.