We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e734b90 commit d67b592Copy full SHA for d67b592
ingestors/documents/html.py
@@ -7,6 +7,7 @@
7
8
class HTMLIngestor(Ingestor, EncodingSupport, HTMLSupport):
9
"HTML file ingestor class. Extracts the text from the web page."
10
+
11
MIME_TYPES = ["text/html"]
12
EXTENSIONS = [
13
"htm",
ingestors/exc.py
@@ -3,6 +3,7 @@
3
4
class ProcessingException(Exception):
5
"A data-related error occuring during file processing."
6
pass
ingestors/support/xml.py
@@ -17,7 +17,7 @@ def get_xml_parser(self, **kwargs):
17
recover=True,
18
resolve_entities=False,
19
no_network=True,
20
- **kwargs
+ **kwargs,
21
)
22
23
def parse_xml_path(self, file_path, **kwargs):
0 commit comments