FinDoc / build_index /parser /__init__.py
xl2533's picture
initial
6c945f2
raw
history blame
143 Bytes
# -*-coding:utf-8 -*-
from .html_parser import *
from .pdf_parser import *
ParserFactory = {
'html': HTMLParser(),
'pdf': PDFParser()
}