Skip to content

Commit cd185be

Browse files
committed
readme
1 parent 1d5719b commit cd185be

File tree

1 file changed

+10
-8
lines changed
  • sdk/formrecognizer/azure-ai-formrecognizer

1 file changed

+10
-8
lines changed

sdk/formrecognizer/azure-ai-formrecognizer/README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,6 @@ The client exposes a `begin_<method-name>` method that returns an `LROPoller` or
145145
for the operation to complete by calling `result()` on the operation returned from the `begin_<method-name>` method.
146146
Sample code snippets are provided to illustrate using long-running operations [below](#examples "Examples").
147147

148-
### Async APIs
149-
This library also includes a complete async API supported on Python 3.5+. To use it, you must
150-
first install an async transport, such as [aiohttp](https://pypi.org/project/aiohttp/).
151-
See
152-
[azure-core documentation](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/core/azure-core/README.md#transport)
153-
for more information.
154-
155148

156149
## Examples
157150

@@ -191,7 +184,8 @@ for recognized_form in result:
191184
))
192185
```
193186

194-
Alternatively, a form url can also be used to recognize custom forms using the `begin_recognize_custom_forms_from_url` method.
187+
Alternatively, a form url can also be used to recognize custom forms using the `begin_recognize_custom_forms_from_url` method. The `_from_url` methods exist for
188+
all the recognize methods.
195189

196190

197191
```
@@ -342,6 +336,14 @@ except ResourceNotFoundError:
342336
print("Successfully deleted model with id {}".format(custom_model.model_id))
343337
```
344338

339+
## Async APIs
340+
This library also includes a complete async API supported on Python 3.5+. To use it, you must
341+
first install an async transport, such as [aiohttp](https://pypi.org/project/aiohttp/).
342+
See
343+
[azure-core documentation](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/core/azure-core/README.md#transport)
344+
for more information.
345+
346+
345347
## Optional Configuration
346348

347349
Optional keyword arguments can be passed in at the client and per-operation level.

0 commit comments

Comments
 (0)