This project introduces you to pytest - the most popular testing framework for Python - through a few exercises that parse a typical log file to check for errors and look for expected patterns.
As security engineers, sometimes we all need to parse logs from time to time, usually in the heat of an outage. The Python script parser.py will return all logs that correspond to a given IP CIDR.
Abstract: Logs are important in modern software development with runtime information. Log parsing is the first step in many log-based analyses, that involve extracting structured information from ...