Forum Discussion

wahmed20's avatar
wahmed20
Resolver I
3 years ago
Solved

Connecting elasticsearch using python client

I have python code working on my computer.   from elasticsearch import Elasticsearch es = Elasticsearch( hosts=[{'host': 'ip', 'port': 9200}], http_auth=('name', 'username'), ) I want to...