Skip to content

Commit 98f0657

Browse files
✨ add support for Resume V1 (#220)
1 parent 9e435a4 commit 98f0657

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1185
-28
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ Complete details on the working of the library are available in the following gu
136136
* [Python Custom APIs (API Builder)](https://developers.mindee.com/docs/python-api-builder)
137137
* [Python Invoice OCR](https://developers.mindee.com/docs/python-invoice-ocr)
138138
* [Python International Id OCR](https://developers.mindee.com/docs/python-international-id-ocr)
139+
* [Python Resume OCR](https://developers.mindee.com/docs/python-resume-ocr)
139140
* [Python Receipt OCR](https://developers.mindee.com/docs/python-receipt-ocr)
140141
* [Python Financial Document OCR](https://developers.mindee.com/docs/python-financial-document-ocr)
141142
* [Python Passport OCR](https://developers.mindee.com/docs/python-passport-ocr)
@@ -166,4 +167,4 @@ Copyright © Mindee
166167
Available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
167168

168169
## Questions?
169-
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
170+
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from mindee import Client, product, AsyncPredictResponse
2+
from time import sleep
3+
4+
# Init a new client
5+
mindee_client = Client(api_key="my-api-key")
6+
7+
# Load a file from disk
8+
input_doc = mindee_client.source_from_path("/path/to/the/file.ext")
9+
10+
# Load a file from disk and enqueue it.
11+
result: AsyncPredictResponse = mindee_client.enqueue_and_parse(
12+
product.ResumeV1,
13+
input_doc,
14+
)
15+
16+
# Print a brief summary of the parsed data
17+
print(result.document)

docs/extras/guide/bank_account_details_v2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ print(result.document.inference.prediction.swift_code.value)
134134
```
135135

136136
# Questions?
137-
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
137+
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)

docs/extras/guide/bank_check_v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,4 @@ for page in result.document.inference.pages:
172172
```
173173

174174
# Questions?
175-
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
175+
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)

docs/extras/guide/barcode_reader_v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ for codes_2d_elem in result.document.inference.prediction.codes_2d:
9999
```
100100

101101
# Questions?
102-
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
102+
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)

docs/extras/guide/carte_grise_v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,4 +451,4 @@ print(result.document.inference.prediction.y6.value)
451451
```
452452

453453
# Questions?
454-
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
454+
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)

docs/extras/guide/carte_vitale_v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ print(result.document.inference.prediction.surname.value)
119119
```
120120

121121
# Questions?
122-
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
122+
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)

docs/extras/guide/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ A helper script allows you to start the command directly:
5656

5757

5858
**Questions?**
59-
<img alt="Slack Logo Icon" style="display:inline!important" src="https://files.readme.io/5b83947-Slack.png" width="20" height="20">  [Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
59+
<img alt="Slack Logo Icon" style="display:inline!important" src="https://files.readme.io/5b83947-Slack.png" width="20" height="20">  [Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)

docs/extras/guide/cropper_v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ for page in result.document.inference.pages:
9595
```
9696

9797
# Questions?
98-
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
98+
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)

docs/extras/guide/custom_v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,4 @@ It returns a list of [CustomLine](#CustomLine) objects.
150150

151151
# Questions?
152152

153-
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
153+
[Join our Slack](https://join.slack.com/t/mindee-community/shared_invite/zt-2d0ds7dtz-DPAF81ZqTy20chsYpQBW5g)

0 commit comments

Comments
 (0)