I'm using the thing elasticsearch Python wrapper. I can't figure out how to get only the _source of a document. How can I get the Python wrapper to issue a call similar to this:
http://..../index/type/id/_source
?
You simply need to call get_source like this:
from elasticsearch import Elasticsearch
es = Elasticsearch()
source = es.get_source(index='index', doc_type='type', id='id')