The centerpiece of the parser201 module is the LogParser class. The class initializer takes a single line from an Apache access log file and extracts the individual fields into attributes within an object.
pip3 install parser201
The most common use-case for parser201 is importing individual lines from an Apache access log file and creating LogParser objects, like this:
from parser201 import LogParser
with open('access.log', 'r') as f:
for line in f:
lp = LogParser(line)
# Use lp as desired: add to List, Dictionary, etc.
See: parser201 Documentation.