renamed parser/ to parsers/
This commit is contained in:
parent
3475eb2493
commit
ecb41efedf
2 changed files with 0 additions and 0 deletions
0
lib/parsers/__init__.py
Normal file
0
lib/parsers/__init__.py
Normal file
14
lib/parsers/parser.py
Normal file
14
lib/parsers/parser.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
class Parser:
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def parse_data(self, data):
|
||||
self.pre_parse(data)
|
||||
return self.generate_parse_result(data)
|
||||
|
||||
def pre_parse(self, data):
|
||||
pass
|
||||
|
||||
def generate_parse_result(self, result):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue