sparrow-parse 0.1.7__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.
@@ -0,0 +1 @@
1
+ __version__ = '0.1.7'
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print('Sparrow Parse is a Python package for parsing and extracting information from documents.')
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
File without changes
@@ -0,0 +1,7 @@
1
+ class PDFProcessor(object):
2
+ def __init__(self):
3
+ pass
4
+
5
+ def process_file(self, content):
6
+ print("Processing file...")
7
+ return "OK"
@@ -0,0 +1,28 @@
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).
@@ -0,0 +1,8 @@
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,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ sparrow-parse=sparrow_parse:main
3
+