sparrow-parse 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/PKG-INFO +1 -1
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/pyproject.toml +1 -1
- sparrow_parse-0.2.1/sparrow_parse/__init__.py +1 -0
- sparrow_parse-0.2.1/sparrow_parse/extractor/__pycache__/__init__.cpython-310.pyc +0 -0
- sparrow_parse-0.2.1/sparrow_parse/extractor/__pycache__/html_extractor.cpython-310.pyc +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/extractor/html_extractor.py +6 -3
- sparrow_parse-0.2.0/sparrow_parse/__init__.py +0 -1
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/README.md +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/__main__.py +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/data/invoice_1_table.txt +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/extractor/__init__.py +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/extractor/__pycache__/extractor_helper.cpython-310.pyc +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/extractor/extractor_helper.py +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/extractor/markdown_processor.py +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/extractor/unstructured_processor.py +0 -0
- {sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/temp.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sparrow-parse
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: Sparrow Parse is a Python package for parsing and extracting information from documents.
|
5
5
|
Home-page: https://github.com/katanaml/sparrow/tree/main/sparrow-data/parse
|
6
6
|
License: GPL-3.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "sparrow-parse"
|
3
|
-
version = "0.2.
|
3
|
+
version = "0.2.1"
|
4
4
|
description = "Sparrow Parse is a Python package for parsing and extracting information from documents."
|
5
5
|
authors = ["Andrej Baranovskij <andrejus.baranovskis@gmail.com>"]
|
6
6
|
license = "GPL-3.0"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '0.2.1'
|
Binary file
|
@@ -3,8 +3,8 @@ from sentence_transformers import SentenceTransformer, util
|
|
3
3
|
from bs4 import BeautifulSoup
|
4
4
|
import json
|
5
5
|
from rich.progress import Progress, SpinnerColumn, TextColumn
|
6
|
-
from extractor_helper import merge_html_table_headers
|
7
|
-
from extractor_helper import clean_html_table_header_names
|
6
|
+
from .extractor_helper import merge_html_table_headers
|
7
|
+
from .extractor_helper import clean_html_table_header_names
|
8
8
|
import re
|
9
9
|
|
10
10
|
|
@@ -221,7 +221,10 @@ class HTMLExtractor(object):
|
|
221
221
|
|
222
222
|
|
223
223
|
if __name__ == "__main__":
|
224
|
-
#
|
224
|
+
# to run for debugging, navigate to sparrow_parse and run the following command:
|
225
|
+
# python -m extractor.html_extractor
|
226
|
+
|
227
|
+
# with open('data/invoice_1_table.txt', 'r') as file:
|
225
228
|
# file_content = file.read()
|
226
229
|
#
|
227
230
|
# file_content = file_content.strip()[1:-1].strip()
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = '0.2.0'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{sparrow_parse-0.2.0 → sparrow_parse-0.2.1}/sparrow_parse/extractor/unstructured_processor.py
RENAMED
File without changes
|
File without changes
|