Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[formrecognizer] replace aka link #12597

Merged
merged 1 commit into from
Jul 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def begin_recognize_receipts(self, receipt, **kwargs):
'image/jpeg', 'image/png' or 'image/tiff'.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

:param receipt: JPEG, PNG, PDF and TIFF type file stream or bytes.
Currently only supports US sales receipts.
Expand Down Expand Up @@ -152,7 +152,7 @@ def begin_recognize_receipts_from_url(self, receipt_url, **kwargs):
The input document must be the location (URL) of the receipt to be analyzed.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

:param str receipt_url: The URL of the receipt to analyze. The input must be a valid, encoded URL
of one of the supported formats: JPEG, PNG, PDF and TIFF. Currently only supports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async def begin_recognize_receipts(
'image/jpeg', 'image/png' or 'image/tiff'.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

:param receipt: JPEG, PNG, PDF and TIFF type file stream or bytes.
Currently only supports US sales receipts.
Expand Down Expand Up @@ -166,7 +166,7 @@ async def begin_recognize_receipts_from_url(
The input document must be the location (URL) of the receipt to be analyzed.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

:param str receipt_url: The URL of the receipt to analyze. The input must be a valid, encoded URL
of one of the supported formats: JPEG, PNG, PDF and TIFF. Currently only supports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from receipts, see sample_strongly_typed_recognized_form_async.py.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

USAGE:
python sample_recognize_receipts_async.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from receipts, see sample_strongly_typed_recognized_form_async.py.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

USAGE:
python sample_recognize_receipts_from_url_async.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
fields' names and types.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

USAGE:
python sample_strongly_typed_recognized_form_async.py
Expand All @@ -36,7 +36,7 @@ class Receipt(object):
If a specific field is not found on the receipt, it will return None.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields
"""

def __init__(self, form):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from receipts, see sample_strongly_typed_recognized_form.py.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

USAGE:
python sample_recognize_receipts.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from receipts, see sample_strongly_typed_recognized_form.py.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

USAGE:
python sample_recognize_receipts_from_url.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
fields' names and types.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields

USAGE:
python sample_strongly_typed_recognized_form.py
Expand All @@ -35,7 +35,7 @@ class Receipt(object):
If a specific field is not found on the receipt, it will return None.

See fields found on a receipt here:
https://aka.ms/azsdk/python/formrecognizer/receiptfields
https://aka.ms/formrecognizer/receiptfields
"""

def __init__(self, form):
Expand Down