@@ -443,9 +443,9 @@ def begin_recognize_content(self, form, **kwargs):
443443
444444 :param form: JPEG, PNG, PDF, TIFF, or BMP type file stream or bytes.
445445 :type form: bytes or IO[bytes]
446- :keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF), input the number of the
447- pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or
448- range with a comma.
446+ :keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
447+ and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
448+ `pages=["1-3", "5-6"]`. Separate each page number or range with a comma.
449449 :keyword str language: The BCP-47 language code of the text in the document.
450450 See supported language codes here:
451451 https://docs.microsoft.com/azure/cognitive-services/form-recognizer/language-support.
@@ -515,9 +515,9 @@ def begin_recognize_content_from_url(self, form_url, **kwargs):
515515
516516 :param str form_url: The URL of the form to analyze. The input must be a valid, encoded URL
517517 of one of the supported formats: JPEG, PNG, PDF, TIFF, or BMP.
518- :keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF), input the number of the
519- pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or
520- range with a comma.
518+ :keyword list[str] pages: Custom page numbers for multi-page documents(PDF/TIFF). Input the page numbers
519+ and/or ranges of pages you want to get in the result. For a range of pages, use a hyphen, like
520+ `pages=["1-3", "5-6"]`. Separate each page number or range with a comma.
521521 :keyword str language: The BCP-47 language code of the text in the document.
522522 See supported language codes here:
523523 https://docs.microsoft.com/azure/cognitive-services/form-recognizer/language-support.
0 commit comments