natocr 2.0.0__tar.gz → 2.0.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.
- {natocr-2.0.0 → natocr-2.0.1}/PKG-INFO +9 -1
- {natocr-2.0.0 → natocr-2.0.1}/README.md +8 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr/__init__.py +1 -1
- {natocr-2.0.0 → natocr-2.0.1}/natocr.egg-info/PKG-INFO +9 -1
- {natocr-2.0.0 → natocr-2.0.1}/pyproject.toml +1 -1
- {natocr-2.0.0 → natocr-2.0.1}/LICENSE +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr/core.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr/macos.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr/models.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr/windows.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr.egg-info/SOURCES.txt +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr.egg-info/dependency_links.txt +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr.egg-info/requires.txt +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/natocr.egg-info/top_level.txt +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/setup.cfg +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/tests/test_integration_macos.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/tests/test_integration_windows.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/tests/test_macos.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/tests/test_models.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/tests/test_ocr.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/tests/test_package.py +0 -0
- {natocr-2.0.0 → natocr-2.0.1}/tests/test_windows.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: natocr
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: Native OCR library using platform-specific frameworks (macOS Vision, Windows Runtime OCR)
|
|
5
5
|
Author-email: alfredchiesa <alfred.personal@icloud.com>
|
|
6
6
|
Maintainer-email: alfredchiesa <alfred.personal@icloud.com>
|
|
@@ -58,6 +58,14 @@ than third-party alternatives like Tesseract. **natocr** makes reaching for them
|
|
|
58
58
|
painless via one clean Python API instead of wrangling with Objective-C bridges
|
|
59
59
|
or WinRT async plumbing.
|
|
60
60
|
|
|
61
|
+
## Updates
|
|
62
|
+
|
|
63
|
+
- **v2.0.0** (2026-06-25) - batch & async support: [`recognize_many()`](#batch-and-async) plus awaitable `arecognize()` / `arecognize_many()` for concurrent, non-blocking OCR
|
|
64
|
+
- **v1.6.1** (2026-06-04) - animated PNG and multi-image HEIF support
|
|
65
|
+
- **v1.6.0** (2026-06-04) - multi-page documents and DjVu support
|
|
66
|
+
- **v1.5.0** (2026-06-04) - JPEG 2000, JPEG XL, and JPEG XR / HD Photo support
|
|
67
|
+
- **v1.4.0** (2026-06-04) - HEIC / HEIF (iPhone photo) support
|
|
68
|
+
|
|
61
69
|
## Install
|
|
62
70
|
|
|
63
71
|
```bash
|
|
@@ -9,6 +9,14 @@ than third-party alternatives like Tesseract. **natocr** makes reaching for them
|
|
|
9
9
|
painless via one clean Python API instead of wrangling with Objective-C bridges
|
|
10
10
|
or WinRT async plumbing.
|
|
11
11
|
|
|
12
|
+
## Updates
|
|
13
|
+
|
|
14
|
+
- **v2.0.0** (2026-06-25) - batch & async support: [`recognize_many()`](#batch-and-async) plus awaitable `arecognize()` / `arecognize_many()` for concurrent, non-blocking OCR
|
|
15
|
+
- **v1.6.1** (2026-06-04) - animated PNG and multi-image HEIF support
|
|
16
|
+
- **v1.6.0** (2026-06-04) - multi-page documents and DjVu support
|
|
17
|
+
- **v1.5.0** (2026-06-04) - JPEG 2000, JPEG XL, and JPEG XR / HD Photo support
|
|
18
|
+
- **v1.4.0** (2026-06-04) - HEIC / HEIF (iPhone photo) support
|
|
19
|
+
|
|
12
20
|
## Install
|
|
13
21
|
|
|
14
22
|
```bash
|
|
@@ -9,7 +9,7 @@ this package provides ocr functionality using native frameworks:
|
|
|
9
9
|
from .core import OCR
|
|
10
10
|
from .models import BoundingBox, OCRResult, TextElement
|
|
11
11
|
|
|
12
|
-
__version__ = "2.0.
|
|
12
|
+
__version__ = "2.0.1"
|
|
13
13
|
__author__ = "alfredchiesa"
|
|
14
14
|
__email__ = "alfred.personal@icloud.com"
|
|
15
15
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: natocr
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: Native OCR library using platform-specific frameworks (macOS Vision, Windows Runtime OCR)
|
|
5
5
|
Author-email: alfredchiesa <alfred.personal@icloud.com>
|
|
6
6
|
Maintainer-email: alfredchiesa <alfred.personal@icloud.com>
|
|
@@ -58,6 +58,14 @@ than third-party alternatives like Tesseract. **natocr** makes reaching for them
|
|
|
58
58
|
painless via one clean Python API instead of wrangling with Objective-C bridges
|
|
59
59
|
or WinRT async plumbing.
|
|
60
60
|
|
|
61
|
+
## Updates
|
|
62
|
+
|
|
63
|
+
- **v2.0.0** (2026-06-25) - batch & async support: [`recognize_many()`](#batch-and-async) plus awaitable `arecognize()` / `arecognize_many()` for concurrent, non-blocking OCR
|
|
64
|
+
- **v1.6.1** (2026-06-04) - animated PNG and multi-image HEIF support
|
|
65
|
+
- **v1.6.0** (2026-06-04) - multi-page documents and DjVu support
|
|
66
|
+
- **v1.5.0** (2026-06-04) - JPEG 2000, JPEG XL, and JPEG XR / HD Photo support
|
|
67
|
+
- **v1.4.0** (2026-06-04) - HEIC / HEIF (iPhone photo) support
|
|
68
|
+
|
|
61
69
|
## Install
|
|
62
70
|
|
|
63
71
|
```bash
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "natocr"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.1"
|
|
8
8
|
description = "Native OCR library using platform-specific frameworks (macOS Vision, Windows Runtime OCR)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|