Python Forum
help with project of reading and searching big log file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
help with project of reading and searching big log file
#2
There are many things to do to improve the code. First steps:
  • remove the line with .readlines() and don't close the logfile.
  • use for line, count in enumerate(FullLogFile, 1): directly and don't increment count.
  • before the second pass, use FullLogFile.seek(0) to go back to the beginning of the file, then again use for line in FullLogFile:
  • Acually, you could do everything in a single pass.
Reply


Messages In This Thread
RE: help with project of reading and searching big log file - by Gribouillis - Jun-24-2021, 09:32 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Sad problems with reading csv file. MassiJames 3 656 Nov-16-2023, 03:41 PM
Last Post: snippsat
  Reading a file name fron a folder on my desktop Fiona 4 930 Aug-23-2023, 11:11 AM
Last Post: Axel_Erfurt
  splitting file into multiple files by searching for string AlphaInc 2 908 Jul-01-2023, 10:35 PM
Last Post: Pedroski55
  Reading data from excel file –> process it >>then write to another excel output file Jennifer_Jone 0 1,116 Mar-14-2023, 07:59 PM
Last Post: Jennifer_Jone
  Reading a file JonWayn 3 1,111 Dec-30-2022, 10:18 AM
Last Post: ibreeden
  Reading Specific Rows In a CSV File finndude 3 1,002 Dec-13-2022, 03:19 PM
Last Post: finndude
  Web project and running a .py file emont 0 652 Dec-11-2022, 11:15 PM
Last Post: emont
  Excel file reading problem max70990 1 902 Dec-11-2022, 07:00 PM
Last Post: deanhystad
  Replace columns indexes reading a XSLX file Larry1888 2 997 Nov-18-2022, 10:16 PM
Last Post: Pedroski55
  Failing reading a file and cannot exit it... tester_V 8 1,838 Aug-19-2022, 10:27 PM
Last Post: tester_V

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020