79135662

Date: 2024-10-29 02:29:09
Score: 0.5
Natty:
Report link
from elasticsearch import Elasticsearch

es = Elasticsearch(
    "https://localhost:9200", 
    basic_auth=('elastic', 'changeme'), 
    ca_certs="/path/to/cert/ca.crt", 
    verify_certs=True)

print(es.indices.get(index="_all"))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: happy