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