diff --git a/_clients/index.md b/_clients/index.md index d920e16a..2f3513dd 100644 --- a/_clients/index.md +++ b/_clients/index.md @@ -13,7 +13,9 @@ OpenSearch provides clients for several popular programming languages, with more For example, a 1.0.0 client works with an OpenSearch 1.1.0 cluster, but might not support any non-breaking API changes in OpenSearch 1.1.0. A 1.2.0 client works with the same cluster, but might allow you to pass unsupported options in certain functions. We recommend using the same version for both, but if your tests pass after a cluster upgrade, you don't necessarily need to upgrade your clients immediately. +{% comment %} * [OpenSearch Java client]({{site.url}}{{site.baseurl}}/clients/java/) +{% endcomment %} * [OpenSearch Python client]({{site.url}}{{site.baseurl}}/clients/python/) * [OpenSearch JavaScript (Node.js) client]({{site.url}}{{site.baseurl}}/clients/javascript/) * [OpenSearch Go client]({{site.url}}{{site.baseurl}}/clients/go/) diff --git a/_clients/python.md b/_clients/python.md index 9ce68bca..10a856a2 100644 --- a/_clients/python.md +++ b/_clients/python.md @@ -6,7 +6,7 @@ nav_order: 70 # Python client -The OpenSearch Python client provides a more natural syntax for interacting with your cluster. Rather than sending HTTP requests with raw JSON bodies to a given URL, you can create an OpenSearch client for your cluster and call the client's built-in functions. +The OpenSearch Python client provides a more natural syntax for interacting with your cluster. Rather than sending HTTP requests to a given URL, you can create an OpenSearch client for your cluster and call the client's built-in functions. {% comment %} `opensearch-py` is the lower-level of the two Python clients. If you want a general client for assorted operations, it's a great choice. If you want a higher-level client strictly for indexing and search operations, consider [opensearch-dsl-py]({{site.url}}{{site.baseurl}}/clients/python-dsl/).