我安装了弹性搜索6.2.0与我的mac中的kibana当我连接到kibana我可以(获取,发布,放置,删除)数据没有问题但是当尝试这个到我的程序时有一个bug
引发HTTP_EXCEPTIONS.get(status_code,TransportError)(status_code,error_message,additional_info) elasticsearch.exceptions.TransportError:不支持TransportError(406,' Content-Type header []')
我使用默认库elestic for python
这是我的要求文件
certifi==2018.1.18
elasticsearch==1.9.0
numpy==1.13.1
opencv-python==3.3.0.10
simplejson==3.13.2
sip==4.19.3
six==1.11.0
urllib3==1.22
在我的.py文件中我有这个
from elasticsearch import Elasticsearch
es = Elasticsearch()
es.index(index="my-index", doc_type="test-type", id=42, body={"any": "data", "timestamp": datetime.now()})
与文档
完全相同我在js的弹性github响应中找到了但不是python
我试图把ssl但是不起作用