sparrow-parse 0.3.1__tar.gz → 0.3.2__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.3.1 → sparrow-parse-0.3.2}/PKG-INFO +20 -4
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/README.md +19 -3
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/setup.py +1 -1
- sparrow-parse-0.3.2/sparrow_parse/__init__.py +1 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse.egg-info/PKG-INFO +20 -4
- sparrow-parse-0.3.1/sparrow_parse/__init__.py +0 -1
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/setup.cfg +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/__main__.py +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/extractor/__init__.py +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/extractor/extractor_helper.py +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/extractor/html_extractor.py +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/extractor/markdown_processor.py +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/extractor/pdf_optimizer.py +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/extractor/unstructured_processor.py +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/temp.py +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse.egg-info/SOURCES.txt +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse.egg-info/dependency_links.txt +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse.egg-info/entry_points.txt +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse.egg-info/requires.txt +0 -0
- {sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sparrow-parse
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.2
|
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
|
Author: Andrej Baranovskij
|
@@ -142,14 +142,30 @@ Example:
|
|
142
142
|
|
143
143
|
## Library build
|
144
144
|
|
145
|
+
Create Python virtual environment
|
146
|
+
|
147
|
+
```
|
148
|
+
python -m venv .env_sparrow_parse
|
149
|
+
```
|
150
|
+
|
151
|
+
Install Python libraries
|
152
|
+
|
153
|
+
```
|
154
|
+
pip install -r requirements.txt
|
155
|
+
```
|
156
|
+
|
157
|
+
Build package
|
158
|
+
|
145
159
|
```
|
146
|
-
|
160
|
+
pip install setuptools wheel
|
161
|
+
python setup.py sdist bdist_wheel
|
147
162
|
```
|
148
163
|
|
149
|
-
|
164
|
+
Upload to PyPI
|
150
165
|
|
151
166
|
```
|
152
|
-
|
167
|
+
pip install twine
|
168
|
+
twine upload dist/*
|
153
169
|
```
|
154
170
|
|
155
171
|
## Commercial usage
|
@@ -123,14 +123,30 @@ Example:
|
|
123
123
|
|
124
124
|
## Library build
|
125
125
|
|
126
|
+
Create Python virtual environment
|
127
|
+
|
128
|
+
```
|
129
|
+
python -m venv .env_sparrow_parse
|
130
|
+
```
|
131
|
+
|
132
|
+
Install Python libraries
|
133
|
+
|
134
|
+
```
|
135
|
+
pip install -r requirements.txt
|
136
|
+
```
|
137
|
+
|
138
|
+
Build package
|
139
|
+
|
126
140
|
```
|
127
|
-
|
141
|
+
pip install setuptools wheel
|
142
|
+
python setup.py sdist bdist_wheel
|
128
143
|
```
|
129
144
|
|
130
|
-
|
145
|
+
Upload to PyPI
|
131
146
|
|
132
147
|
```
|
133
|
-
|
148
|
+
pip install twine
|
149
|
+
twine upload dist/*
|
134
150
|
```
|
135
151
|
|
136
152
|
## Commercial usage
|
@@ -8,7 +8,7 @@ with open("requirements.txt", "r", encoding="utf-8") as fh:
|
|
8
8
|
|
9
9
|
setup(
|
10
10
|
name="sparrow-parse",
|
11
|
-
version="0.3.
|
11
|
+
version="0.3.2",
|
12
12
|
author="Andrej Baranovskij",
|
13
13
|
author_email="andrejus.baranovskis@gmail.com",
|
14
14
|
description="Sparrow Parse is a Python package for parsing and extracting information from documents.",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = '0.3.2'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sparrow-parse
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.2
|
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
|
Author: Andrej Baranovskij
|
@@ -142,14 +142,30 @@ Example:
|
|
142
142
|
|
143
143
|
## Library build
|
144
144
|
|
145
|
+
Create Python virtual environment
|
146
|
+
|
147
|
+
```
|
148
|
+
python -m venv .env_sparrow_parse
|
149
|
+
```
|
150
|
+
|
151
|
+
Install Python libraries
|
152
|
+
|
153
|
+
```
|
154
|
+
pip install -r requirements.txt
|
155
|
+
```
|
156
|
+
|
157
|
+
Build package
|
158
|
+
|
145
159
|
```
|
146
|
-
|
160
|
+
pip install setuptools wheel
|
161
|
+
python setup.py sdist bdist_wheel
|
147
162
|
```
|
148
163
|
|
149
|
-
|
164
|
+
Upload to PyPI
|
150
165
|
|
151
166
|
```
|
152
|
-
|
167
|
+
pip install twine
|
168
|
+
twine upload dist/*
|
153
169
|
```
|
154
170
|
|
155
171
|
## Commercial usage
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = '0.3.1'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{sparrow-parse-0.3.1 → sparrow-parse-0.3.2}/sparrow_parse/extractor/unstructured_processor.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|