Update overview.asciidoc to replace tuple reference to API Key (#678)

This commit is contained in:
Iulia Feroli 2024-03-21 12:31:19 +01:00 committed by GitHub
parent de83f3f905
commit aaec995b1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,7 +61,7 @@ You can also connect Eland to an Elasticsearch instance in Elastic Cloud:
>>> from elasticsearch import Elasticsearch
# First instantiate an 'Elasticsearch' instance connected to Elastic Cloud
>>> es = Elasticsearch(cloud_id="...", api_key=("...", "..."))
>>> es = Elasticsearch(cloud_id="...", api_key="...")
# then wrap the client in an Eland DataFrame:
>>> df = ed.DataFrame(es, es_index_pattern="flights")