From f9a78d69c2ef7b9506faef2f0c8e6bb79dfd088e Mon Sep 17 00:00:00 2001 From: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Date: Fri, 23 Feb 2024 15:29:01 -0500 Subject: [PATCH] Add links to samples and API to Python client (#6508) Signed-off-by: Fanit Kolchina --- _clients/python-low-level.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/_clients/python-low-level.md b/_clients/python-low-level.md index 74920f0bb2..894bef0e38 100644 --- a/_clients/python-low-level.md +++ b/_clients/python-low-level.md @@ -10,7 +10,7 @@ redirect_from: The OpenSearch low-level Python client (`opensearch-py`) provides wrapper methods for the OpenSearch REST API so that you can interact with your cluster more naturally in Python. Rather than sending raw HTTP requests to a given URL, you can create an OpenSearch client for your cluster and call the client's built-in functions. For the client's complete API documentation and additional examples, see the [`opensearch-py` API documentation](https://opensearch-project.github.io/opensearch-py/). -This getting started guide illustrates how to connect to OpenSearch, index documents, and run queries. For the client source code, see the [opensearch-py repo](https://github.com/opensearch-project/opensearch-py). +This getting started guide illustrates how to connect to OpenSearch, index documents, and run queries. For the client source code, see the [`opensearch-py` repo](https://github.com/opensearch-project/opensearch-py). ## Setup @@ -348,4 +348,9 @@ response = client.indices.delete( print('\nDeleting index:') print(response) ``` -{% include copy.html %} \ No newline at end of file +{% include copy.html %} + +## Next steps + +- For Python client API, see the [`opensearch-py` API documentation](https://opensearch-project.github.io/opensearch-py/). +- For Python code samples, see [Samples](https://github.com/opensearch-project/opensearch-py/tree/main/samples). \ No newline at end of file