structocr 1.3.0__tar.gz → 1.3.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: structocr
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: The official Python SDK for StructOCR API - Passport, ID card, Driver License OCR, Invoice, Receipts, VIN, HIN and Container OCR.
5
5
  Home-page: https://structocr.com
6
6
  Author: StructOCR Team
@@ -40,7 +40,7 @@ StructOCR is a powerful API tailored for developers to extract structured data f
40
40
 
41
41
  -----
42
42
 
43
- ## 🚀 What's New in 1.3.0
43
+ ## 🚀 What's New in 1.3.1
44
44
 
45
45
  We've massively upgraded our Identity Verification engine!
46
46
  * **Hybrid VIZ + MRZ AI for National IDs**: The SDK now automatically cross-validates unstructured Visual Zone (VIZ) data against cryptographic Machine Readable Zone (MRZ) checksums (TD1/TD2) for zero hallucination. Raw MRZ lines are now accessible via `additional_fields`.
@@ -11,7 +11,7 @@ StructOCR is a powerful API tailored for developers to extract structured data f
11
11
 
12
12
  -----
13
13
 
14
- ## 🚀 What's New in 1.3.0
14
+ ## 🚀 What's New in 1.3.1
15
15
 
16
16
  We've massively upgraded our Identity Verification engine!
17
17
  * **Hybrid VIZ + MRZ AI for National IDs**: The SDK now automatically cross-validates unstructured Visual Zone (VIZ) data against cryptographic Machine Readable Zone (MRZ) checksums (TD1/TD2) for zero hallucination. Raw MRZ lines are now accessible via `additional_fields`.
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="structocr",
5
- version="1.3.0",
5
+ version="1.3.1",
6
6
  description="The official Python SDK for StructOCR API - Passport, ID card, Driver License OCR, Invoice, Receipts, VIN, HIN and Container OCR.",
7
7
  long_description=open("README.md").read(),
8
8
  long_description_content_type="text/markdown",
@@ -0,0 +1,5 @@
1
+ __version__ = "1.3.1"
2
+
3
+ from .client import StructOCR
4
+
5
+ __all__ = ['StructOCR']
@@ -21,7 +21,7 @@ class StructOCR:
21
21
  self.session.headers.update({
22
22
  "x-api-key": self.api_key,
23
23
  "Content-Type": "application/json",
24
- "User-Agent": "StructOCR-Python/1.3.0"
24
+ "User-Agent": "StructOCR-Python/1.3.1"
25
25
  })
26
26
 
27
27
  def _post_image(self, endpoint, file_path):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: structocr
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: The official Python SDK for StructOCR API - Passport, ID card, Driver License OCR, Invoice, Receipts, VIN, HIN and Container OCR.
5
5
  Home-page: https://structocr.com
6
6
  Author: StructOCR Team
@@ -40,7 +40,7 @@ StructOCR is a powerful API tailored for developers to extract structured data f
40
40
 
41
41
  -----
42
42
 
43
- ## 🚀 What's New in 1.3.0
43
+ ## 🚀 What's New in 1.3.1
44
44
 
45
45
  We've massively upgraded our Identity Verification engine!
46
46
  * **Hybrid VIZ + MRZ AI for National IDs**: The SDK now automatically cross-validates unstructured Visual Zone (VIZ) data against cryptographic Machine Readable Zone (MRZ) checksums (TD1/TD2) for zero hallucination. Raw MRZ lines are now accessible via `additional_fields`.
@@ -1,5 +0,0 @@
1
- __version__ = "1.2.0"
2
-
3
- from .client import StructOCR
4
-
5
- __all__ = ['StructOCR']
File without changes