swarmauri_ocr_pytesseract 0.9.3.dev24__tar.gz → 0.9.4.dev3__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.
- {swarmauri_ocr_pytesseract-0.9.3.dev24 → swarmauri_ocr_pytesseract-0.9.4.dev3}/PKG-INFO +14 -11
- {swarmauri_ocr_pytesseract-0.9.3.dev24 → swarmauri_ocr_pytesseract-0.9.4.dev3}/README.md +4 -6
- {swarmauri_ocr_pytesseract-0.9.3.dev24 → swarmauri_ocr_pytesseract-0.9.4.dev3}/pyproject.toml +10 -5
- {swarmauri_ocr_pytesseract-0.9.3.dev24 → swarmauri_ocr_pytesseract-0.9.4.dev3}/LICENSE +0 -0
- {swarmauri_ocr_pytesseract-0.9.3.dev24 → swarmauri_ocr_pytesseract-0.9.4.dev3}/swarmauri_ocr_pytesseract/PytesseractOCR.py +0 -0
- {swarmauri_ocr_pytesseract-0.9.3.dev24 → swarmauri_ocr_pytesseract-0.9.4.dev3}/swarmauri_ocr_pytesseract/__init__.py +0 -0
|
@@ -1,44 +1,47 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: swarmauri_ocr_pytesseract
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.4.dev3
|
|
4
4
|
Summary: Swarmauri Tesseract Image to Text Model
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
7
7
|
Keywords: swarmauri,ocr,pytesseract,tesseract,image,text,model
|
|
8
8
|
Author: Jacob Stewart
|
|
9
9
|
Author-email: jacob@swarmauri.com
|
|
10
|
-
Requires-Python: >=3.10,<3.
|
|
10
|
+
Requires-Python: >=3.10,<3.15
|
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
15
12
|
Classifier: Natural Language :: English
|
|
16
13
|
Classifier: Development Status :: 3 - Alpha
|
|
17
14
|
Classifier: Intended Audience :: Developers
|
|
18
15
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
16
|
+
Classifier: Programming Language :: Python
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
24
|
Requires-Dist: pytesseract (>=0.3.13)
|
|
20
25
|
Requires-Dist: swarmauri_base
|
|
21
26
|
Requires-Dist: swarmauri_core
|
|
22
27
|
Requires-Dist: swarmauri_standard
|
|
23
28
|
Description-Content-Type: text/markdown
|
|
24
29
|
|
|
25
|
-

|
|
26
31
|
|
|
27
32
|
<p align="center">
|
|
28
|
-
<a href="https://
|
|
29
|
-
<img src="https://
|
|
33
|
+
<a href="https://pepy.tech/project/swarmauri_ocr_pytesseract/">
|
|
34
|
+
<img src="https://static.pepy.tech/badge/swarmauri_ocr_pytesseract/month" alt="PyPI - Downloads"/></a>
|
|
30
35
|
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/community/swarmauri_ocr_pytesseract/">
|
|
31
36
|
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/community/swarmauri_ocr_pytesseract.svg"/></a>
|
|
32
37
|
<a href="https://pypi.org/project/swarmauri_ocr_pytesseract/">
|
|
33
|
-
<img src="https://img.shields.io/
|
|
38
|
+
<img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue" alt="PyPI - Python Version"/></a>
|
|
34
39
|
<a href="https://pypi.org/project/swarmauri_ocr_pytesseract/">
|
|
35
40
|
<img src="https://img.shields.io/pypi/l/swarmauri_ocr_pytesseract" alt="PyPI - License"/></a>
|
|
36
41
|
<a href="https://pypi.org/project/swarmauri_ocr_pytesseract/">
|
|
37
42
|
<img src="https://img.shields.io/pypi/v/swarmauri_ocr_pytesseract?label=swarmauri_ocr_pytesseract&color=green" alt="PyPI - swarmauri_ocr_pytesseract"/></a>
|
|
38
43
|
</p>
|
|
39
44
|
|
|
40
|
-
---
|
|
41
|
-
|
|
42
45
|
# Swarmauri OCR Pytesseract
|
|
43
46
|
|
|
44
47
|
OCR adapter for Swarmauri built on top of [PyTesseract](https://pypi.org/project/pytesseract/). Accepts paths, bytes, or PIL images, and exposes synchronous, async, and batch APIs for extracting text.
|
|
@@ -1,20 +1,18 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<a href="https://
|
|
5
|
-
<img src="https://
|
|
4
|
+
<a href="https://pepy.tech/project/swarmauri_ocr_pytesseract/">
|
|
5
|
+
<img src="https://static.pepy.tech/badge/swarmauri_ocr_pytesseract/month" alt="PyPI - Downloads"/></a>
|
|
6
6
|
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/community/swarmauri_ocr_pytesseract/">
|
|
7
7
|
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/community/swarmauri_ocr_pytesseract.svg"/></a>
|
|
8
8
|
<a href="https://pypi.org/project/swarmauri_ocr_pytesseract/">
|
|
9
|
-
<img src="https://img.shields.io/
|
|
9
|
+
<img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue" alt="PyPI - Python Version"/></a>
|
|
10
10
|
<a href="https://pypi.org/project/swarmauri_ocr_pytesseract/">
|
|
11
11
|
<img src="https://img.shields.io/pypi/l/swarmauri_ocr_pytesseract" alt="PyPI - License"/></a>
|
|
12
12
|
<a href="https://pypi.org/project/swarmauri_ocr_pytesseract/">
|
|
13
13
|
<img src="https://img.shields.io/pypi/v/swarmauri_ocr_pytesseract?label=swarmauri_ocr_pytesseract&color=green" alt="PyPI - swarmauri_ocr_pytesseract"/></a>
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
|
-
---
|
|
17
|
-
|
|
18
16
|
# Swarmauri OCR Pytesseract
|
|
19
17
|
|
|
20
18
|
OCR adapter for Swarmauri built on top of [PyTesseract](https://pypi.org/project/pytesseract/). Accepts paths, bytes, or PIL images, and exposes synchronous, async, and batch APIs for extracting text.
|
{swarmauri_ocr_pytesseract-0.9.3.dev24 → swarmauri_ocr_pytesseract-0.9.4.dev3}/pyproject.toml
RENAMED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "swarmauri_ocr_pytesseract"
|
|
3
|
-
version = "0.9.
|
|
3
|
+
version = "0.9.4.dev3"
|
|
4
4
|
description = "Swarmauri Tesseract Image to Text Model"
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
repository = "http://github.com/swarmauri/swarmauri-sdk"
|
|
8
|
-
requires-python = ">=3.10,<3.
|
|
8
|
+
requires-python = ">=3.10,<3.15"
|
|
9
9
|
classifiers = [
|
|
10
10
|
"License :: OSI Approved :: Apache Software License",
|
|
11
|
-
"Programming Language :: Python :: 3.10",
|
|
12
|
-
"Programming Language :: Python :: 3.11",
|
|
13
|
-
"Programming Language :: Python :: 3.12",
|
|
14
11
|
"Natural Language :: English",
|
|
15
12
|
"Development Status :: 3 - Alpha",
|
|
16
13
|
"Intended Audience :: Developers",
|
|
17
14
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
15
|
+
"Programming Language :: Python",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
"Programming Language :: Python :: 3.13",
|
|
22
|
+
"Programming Language :: Python :: 3.14",
|
|
18
23
|
]
|
|
19
24
|
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
20
25
|
dependencies = ["pytesseract>=0.3.13", "swarmauri_core", "swarmauri_base", "swarmauri_standard"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|