22 lines
426 B
Python
22 lines
426 B
Python
import re
|
|
from json import dumps
|
|
|
|
class ParsingBase:
|
|
def __init__(self, objects, audit) -> None:
|
|
pass
|
|
|
|
def runParsing(self) -> None:
|
|
pass
|
|
|
|
def _parseFile(self, fdata) -> None:
|
|
pass
|
|
|
|
def _parsingFile(self, line, item) -> None:
|
|
"""
|
|
This function parse the line and try to find the item in it
|
|
"""
|
|
pass
|
|
|
|
def getResults(self) -> None:
|
|
pass
|