7 lines
190 B
Python
7 lines
190 B
Python
from elasticsearch import Elasticsearch
|
|
|
|
|
|
def find_stuff():
|
|
es = Elasticsearch(host='ec2-54-201-69-116.us-west-2.compute.amazonaws.com)
|
|
es.search(index='nasa', doc_type='geo_point')
|