Skip to content

Commit

Permalink
[formrecognizer] pages update (#16403)
Browse files Browse the repository at this point in the history
* update pages description

* missed a parentheses
  • Loading branch information
kristapratico authored Jan 29, 2021
1 parent adcf588 commit 25617a6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,9 @@ def begin_recognize_content(self, form, **kwargs):
:param form: JPEG, PNG, PDF, TIFF, or BMP type file stream or bytes.
:type form: bytes or IO[bytes]
:keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF), input the number of the
pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or
range with a comma.
:keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
`pages=["1-3", "5-6"]`. Separate each page number or range with a comma.
:keyword str language: The BCP-47 language code of the text in the document.
See supported language codes here:
https://docs.microsoft.com/azure/cognitive-services/form-recognizer/language-support.
Expand Down Expand Up @@ -515,9 +515,9 @@ def begin_recognize_content_from_url(self, form_url, **kwargs):
:param str form_url: The URL of the form to analyze. The input must be a valid, encoded URL
of one of the supported formats: JPEG, PNG, PDF, TIFF, or BMP.
:keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF), input the number of the
pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or
range with a comma.
:keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
`pages=["1-3", "5-6"]`. Separate each page number or range with a comma.
:keyword str language: The BCP-47 language code of the text in the document.
See supported language codes here:
https://docs.microsoft.com/azure/cognitive-services/form-recognizer/language-support.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ async def begin_recognize_content(
:param form: JPEG, PNG, PDF, TIFF, or BMP type file stream or bytes.
:type form: bytes or IO[bytes]
:keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF), input the number of the
pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or
range with a comma.
:keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
`pages=["1-3", "5-6"]`. Separate each page number or range with a comma.
:keyword str language: The BCP-47 language code of the text in the document.
See supported language codes here:
https://docs.microsoft.com/azure/cognitive-services/form-recognizer/language-support.
Expand Down Expand Up @@ -516,9 +516,9 @@ async def begin_recognize_content_from_url(self, form_url: str, **kwargs: Any) -
:param str form_url: The URL of the form to analyze. The input must be a valid, encoded URL
of one of the supported formats: JPEG, PNG, PDF, TIFF, or BMP.
:keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF), input the number of the
pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or
range with a comma.
:keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
`pages=["1-3", "5-6"]`. Separate each page number or range with a comma.
:keyword str language: The BCP-47 language code of the text in the document.
See supported language codes here:
https://docs.microsoft.com/azure/cognitive-services/form-recognizer/language-support.
Expand Down

0 comments on commit 25617a6

Please sign in to comment.