February 2018
Beginner to intermediate
364 pages
10h 32m
English
The code for the search is in the 11/02/search_starwars_by_haircolor.py script, and can be run by simply executing the script. This is a fairly simple search to find the characters whose hair color is blond:
es = Elasticsearch( [ "https://elastic:tduhdExunhEWPjSuH73O6yLS@7dc72d3327076cc4daf5528103c46a27.us-west-2.aws.found.io:9243" ])search_definition = { "query":{ "match": { "hair_color": "blond" } }}result = es.search(index="sw", doc_type="people", body=search_definition)print(json.dumps(result, indent=4))
Read now
Unlock full access