structocr 1.1.5__tar.gz → 1.1.6__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.1.5
3
+ Version: 1.1.6
4
4
  Summary: The official Python SDK for StructOCR API - Passport, ID card, Driver License OCR, Invoice, VIN and Container OCR.
5
5
  Home-page: https://structocr.com
6
6
  Author: StructOCR Team
@@ -27,7 +27,6 @@ Dynamic: requires-dist
27
27
  Dynamic: requires-python
28
28
  Dynamic: summary
29
29
 
30
-
31
30
  # StructOCR Python SDK
32
31
 
33
32
  [![PyPI version](https://badge.fury.io/py/structocr.svg)](https://badge.fury.io/py/structocr)
@@ -39,6 +38,18 @@ StructOCR is a powerful API tailored for developers to extract structured data f
39
38
 
40
39
  👉 **[Get your Free API Key here](https://structocr.com)**
41
40
 
41
+ ---
42
+
43
+ ## 🚀 What's New in 1.1.6
44
+ We've massively expanded our logistics and finance capabilities! The SDK now natively supports:
45
+ * **Container OCR**: Accurately parse shipping container numbers from images.
46
+ * **VIN OCR**: Read Vehicle Identification Numbers from windshields or chassis.
47
+ * **Invoice OCR**: Automatically extract invoice numbers, currencies, merchants, and customers.
48
+
49
+ Check out the [Quick Start](#3-scan-a-national-id-driver-license-invoice-vin-or-container) below to see how easy it is to use them!
50
+
51
+ ---
52
+
42
53
  ## Features
43
54
 
44
55
  - **Passport OCR API**: Instantly extract MRZ, name, DOB, and expiry date from passports of 200+ countries.
@@ -1,4 +1,3 @@
1
-
2
1
  # StructOCR Python SDK
3
2
 
4
3
  [![PyPI version](https://badge.fury.io/py/structocr.svg)](https://badge.fury.io/py/structocr)
@@ -10,6 +9,18 @@ StructOCR is a powerful API tailored for developers to extract structured data f
10
9
 
11
10
  👉 **[Get your Free API Key here](https://structocr.com)**
12
11
 
12
+ ---
13
+
14
+ ## 🚀 What's New in 1.1.6
15
+ We've massively expanded our logistics and finance capabilities! The SDK now natively supports:
16
+ * **Container OCR**: Accurately parse shipping container numbers from images.
17
+ * **VIN OCR**: Read Vehicle Identification Numbers from windshields or chassis.
18
+ * **Invoice OCR**: Automatically extract invoice numbers, currencies, merchants, and customers.
19
+
20
+ Check out the [Quick Start](#3-scan-a-national-id-driver-license-invoice-vin-or-container) below to see how easy it is to use them!
21
+
22
+ ---
23
+
13
24
  ## Features
14
25
 
15
26
  - **Passport OCR API**: Instantly extract MRZ, name, DOB, and expiry date from passports of 200+ countries.
@@ -79,4 +90,4 @@ For full API documentation, response examples, and error codes, please visit the
79
90
 
80
91
  ## License
81
92
 
82
- MIT License. See [LICENSE](https://opensource.org/licenses/MIT) for details.
93
+ MIT License. See [LICENSE](https://opensource.org/licenses/MIT) for details.
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="structocr",
5
- version="1.1.5",
5
+ version="1.1.6",
6
6
  description="The official Python SDK for StructOCR API - Passport, ID card, Driver License OCR, Invoice, VIN 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.1.6"
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.1.5"
24
+ "User-Agent": "StructOCR-Python/1.1.6"
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.1.5
3
+ Version: 1.1.6
4
4
  Summary: The official Python SDK for StructOCR API - Passport, ID card, Driver License OCR, Invoice, VIN and Container OCR.
5
5
  Home-page: https://structocr.com
6
6
  Author: StructOCR Team
@@ -27,7 +27,6 @@ Dynamic: requires-dist
27
27
  Dynamic: requires-python
28
28
  Dynamic: summary
29
29
 
30
-
31
30
  # StructOCR Python SDK
32
31
 
33
32
  [![PyPI version](https://badge.fury.io/py/structocr.svg)](https://badge.fury.io/py/structocr)
@@ -39,6 +38,18 @@ StructOCR is a powerful API tailored for developers to extract structured data f
39
38
 
40
39
  👉 **[Get your Free API Key here](https://structocr.com)**
41
40
 
41
+ ---
42
+
43
+ ## 🚀 What's New in 1.1.6
44
+ We've massively expanded our logistics and finance capabilities! The SDK now natively supports:
45
+ * **Container OCR**: Accurately parse shipping container numbers from images.
46
+ * **VIN OCR**: Read Vehicle Identification Numbers from windshields or chassis.
47
+ * **Invoice OCR**: Automatically extract invoice numbers, currencies, merchants, and customers.
48
+
49
+ Check out the [Quick Start](#3-scan-a-national-id-driver-license-invoice-vin-or-container) below to see how easy it is to use them!
50
+
51
+ ---
52
+
42
53
  ## Features
43
54
 
44
55
  - **Passport OCR API**: Instantly extract MRZ, name, DOB, and expiry date from passports of 200+ countries.
@@ -1,5 +0,0 @@
1
- __version__ = "1.1.5"
2
-
3
- from .client import StructOCR
4
-
5
- __all__ = ['StructOCR']
File without changes