Skip to content

Parse selected values from your .log or .txt files into a CSV format.

License

Notifications You must be signed in to change notification settings

pyxelr/log-to-csv-parser

Repository files navigation

Log to CSV Parser

The purpose of the Log to CSV Parser tool is to ease the analysis of the .log and .txt files. The tool parses the specified files with the defined RegEx string and outputs the results in a CSV format for a more comprehensive view.


App Main Window

Table of Contents

Example Input/Output File

Using the right RegEx string you can parse .log or .txt files (left side of the image) into an organised CSV file (right side of the image).


Sample Result

Getting Started

Make sure you have the right prerequisites to continue with the usage.

Prerequisites

The main components of the script are Standard Python Libraries, which should not require an individual installation if you have already installed Python programming language. The used libraries are:

  • os – miscellaneous operating system interfaces.
  • sys – system-specific parameters and functions.
  • csv – CSV File Reading and Writing.
  • re – regular expression operations.
  • tkinter – Python interface to Tcl/Tk. Used for the creation of the GUI.

Installation

  1. Download or clone this repo:
git clone https://github.com/pyxelr/Log_to_CSV_Parser.git

Usage

  1. Compile the log_parser.py file.
  2. In the revealed GUI, you are advised to follow the presented options from top to bottom:
    • Select 1 (or more) .log or .txt files – after selecting the files, their paths will appear under the button.
      • you can also specify different file types (than .log or .txt) in the selection window that appears.
      • if you select more than one file, the parsing function will append the results from all the files in a single CSV file.
    • Choose the output folder – by default, the application uses the location of the script.
    • Specify RegEx – in this combo box you can either type own Python flavour RegEx or select the predefined ones using the drop-down menu.
      • you can save own RegEx inside the saved-regex_patterns.txt file.
      • you can test your RegEx using the regex101.com website (don't forget to choose the Python flavour).
      • make sure to use RegEx groups by writing your strings between the brackets ( ) and separating different groups with the pipe | (or operator).
    • Specify CSV columns – optional step to write the requested columns in the first line of your CSV.
      • you can save own CSV columns inside the the saved-csv_columns.txt file.
      • make sure to use comma , between the different variables.
    • Convert to CSV – once you are ready, hit this button and wait for the parsing to be completed.
      • after successful conversion, a green message will appear below the button.
    • QUIT – close the application.
  3. (optional) You can test the script by running the predefined RegEx on one of the files inside the sample_logs folder.

Code Editing

The log_parser.py script aims to be well documented with different comments and clear variable names. You should be able to understand the working idea pretty quickly without extensive knowledge of the Python programming language.

General Parsing Algorithm

The GENERAL PARSER algorithm works in a way specified on the flowgraph below. The workflow below has been simplified to capture the most necessary information. Please have a look inside the code to understand its full algorithm.


General Parser Flowchart

Specifying Own Parsing Algorithm

If you wish to specify your algorithm deciding when to save data inside the CSV file, you can modify the parser() function inside the log_parser.py file:

  1. Find the line of code that contains:
HERE YOU CAN ENTER YOUR INDIVIDUAL PARSING ALGORITHM

and enter your algorithm below it.

  • you can base your algorithm on the block of code above:
CUSTOM PARSER FOR A SPECIFIC REGEX STRING
  1. For the ease of use, don't forget to enter your RegEx inside the saved-regex_patterns.txt file.
  2. Save all the files and compile log_parser.py file.

About

Parse selected values from your .log or .txt files into a CSV format.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages