sparrow-parse 0.1.7__py3-none-any.whl → 0.1.8__py3-none-any.whl

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/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.1.7'
1
+ __version__ = '0.1.8'
@@ -0,0 +1,72 @@
1
+ Metadata-Version: 2.1
2
+ Name: sparrow-parse
3
+ Version: 0.1.8
4
+ Summary: Sparrow Parse is a Python package for parsing and extracting information from documents.
5
+ Home-page: https://github.com/katanaml/sparrow/tree/main/sparrow-data/parse
6
+ License: GPL-3.0
7
+ Keywords: llm,rag,vision
8
+ Author: Andrej Baranovskij
9
+ Author-email: andrejus.baranovskis@gmail.com
10
+ Requires-Python: >=3.10,<4.0
11
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Topic :: Software Development
18
+ Requires-Dist: requests (>=2.31.0,<3.0.0)
19
+ Project-URL: Repository, https://github.com/katanaml/sparrow
20
+ Description-Content-Type: text/markdown
21
+
22
+ # Sparrow Parse
23
+
24
+ ## Description
25
+
26
+ This module implements Sparrow Parse [library](https://pypi.org/project/sparrow-parse/) with helpful methods for data pre-processing.
27
+
28
+ ## Install
29
+
30
+ ```
31
+ pip install sparrow-parse
32
+ ```
33
+
34
+ ## Use
35
+
36
+ Import
37
+
38
+ ```
39
+ from sparrow_parse.pdf.pdf_processor import PDFProcessor
40
+ ```
41
+
42
+ Usage
43
+
44
+ ```
45
+ processor = PDFProcessor()
46
+ result = processor.process_file(file_path, strategy, model_name)
47
+ ```
48
+
49
+ Build for development
50
+
51
+ ```
52
+
53
+ ```
54
+
55
+ ## Commercial usage
56
+
57
+ Sparrow is available under the GPL 3.0 license, promoting freedom to use, modify, and distribute the software while ensuring any modifications remain open source under the same license. This aligns with our commitment to supporting the open-source community and fostering collaboration.
58
+
59
+ Additionally, we recognize the diverse needs of organizations, including small to medium-sized enterprises (SMEs). Therefore, Sparrow is also offered for free commercial use to organizations with gross revenue below $5 million USD in the past 12 months, enabling them to leverage Sparrow without the financial burden often associated with high-quality software solutions.
60
+
61
+ For businesses that exceed this revenue threshold or require usage terms not accommodated by the GPL 3.0 license—such as integrating Sparrow into proprietary software without the obligation to disclose source code modifications—we offer dual licensing options. Dual licensing allows Sparrow to be used under a separate proprietary license, offering greater flexibility for commercial applications and proprietary integrations. This model supports both the project's sustainability and the business's needs for confidentiality and customization.
62
+
63
+ If your organization is seeking to utilize Sparrow under a proprietary license, or if you are interested in custom workflows, consulting services, or dedicated support and maintenance options, please contact us at abaranovskis@redsamuraiconsulting.com. We're here to provide tailored solutions that meet your unique requirements, ensuring you can maximize the benefits of Sparrow for your projects and workflows.
64
+
65
+ ## Author
66
+
67
+ [Katana ML](https://katanaml.io), [Andrej Baranovskij](https://github.com/abaranovskis-redsamurai)
68
+
69
+ ## License
70
+
71
+ Licensed under the GPL 3.0. Copyright 2020-2024 Katana ML, Andrej Baranovskij. [Copy of the license](https://github.com/katanaml/sparrow/blob/main/LICENSE).
72
+
@@ -0,0 +1,8 @@
1
+ sparrow_parse/__init__.py,sha256=zemvJ5zjFE6SQT2xmkxc-ZYwNkUTCEX7mz3Epb2qztE,21
2
+ sparrow_parse/__main__.py,sha256=Xs1bpJV0n08KWOoQE34FBYn6EBXZA9HIYJKrE4ZdG78,153
3
+ sparrow_parse/pdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ sparrow_parse/pdf/pdf_processor.py,sha256=hyvOQX_IydRA3z7gQs_g-Ut1hvVHRRxj1_2i-G09-ow,159
5
+ sparrow_parse-0.1.8.dist-info/METADATA,sha256=QTAeFIi-KwyBvSbBrB8wS5WCld3gQ3XfAll4wS4x7Yc,3250
6
+ sparrow_parse-0.1.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
7
+ sparrow_parse-0.1.8.dist-info/entry_points.txt,sha256=H507qotwq3VX4lv5pY9MZYtupKNE1RRb8gEQucPiGi0,52
8
+ sparrow_parse-0.1.8.dist-info/RECORD,,
@@ -1,28 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: sparrow-parse
3
- Version: 0.1.7
4
- Summary: Sparrow Parse is a Python package for parsing and extracting information from documents.
5
- Home-page: https://github.com/katanaml/sparrow/tree/main/sparrow-data/parse
6
- License: GPL-3.0
7
- Keywords: llm,rag,vision
8
- Author: Andrej Baranovskij
9
- Author-email: andrejus.baranovskis@gmail.com
10
- Requires-Python: >=3.10,<4.0
11
- Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
12
- Classifier: Operating System :: OS Independent
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.10
15
- Classifier: Programming Language :: Python :: 3.11
16
- Classifier: Programming Language :: Python :: 3.12
17
- Classifier: Topic :: Software Development
18
- Requires-Dist: requests (>=2.31.0,<3.0.0)
19
- Project-URL: Repository, https://github.com/katanaml/sparrow
20
- Description-Content-Type: text/markdown
21
-
22
- ## Author
23
-
24
- [Katana ML](https://katanaml.io), [Andrej Baranovskij](https://github.com/abaranovskis-redsamurai)
25
-
26
- ## License
27
-
28
- Licensed under the GPL 3.0. Copyright 2020-2024 Katana ML, Andrej Baranovskij. [Copy of the license](https://github.com/katanaml/sparrow/blob/main/LICENSE).
@@ -1,8 +0,0 @@
1
- sparrow_parse/__init__.py,sha256=V7LnX330m3uiAO0EYQbPUYETPj2br2y1Pv-a7ApMj40,21
2
- sparrow_parse/__main__.py,sha256=Xs1bpJV0n08KWOoQE34FBYn6EBXZA9HIYJKrE4ZdG78,153
3
- sparrow_parse/pdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- sparrow_parse/pdf/pdf_processor.py,sha256=hyvOQX_IydRA3z7gQs_g-Ut1hvVHRRxj1_2i-G09-ow,159
5
- sparrow_parse-0.1.7.dist-info/METADATA,sha256=5w7-jeqUA3VKEHpaS4lpkwgVFXUW68KONbXEThyjJX4,1165
6
- sparrow_parse-0.1.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
7
- sparrow_parse-0.1.7.dist-info/entry_points.txt,sha256=H507qotwq3VX4lv5pY9MZYtupKNE1RRb8gEQucPiGi0,52
8
- sparrow_parse-0.1.7.dist-info/RECORD,,