반응형

data = {

'site_name': 'ela',

'site_cnt': 100

}

uid='ela111'

headers = {"Content-Type": "application/json"}

ccurl = "http://localhost:9200/eve/_doc/"+uid

response = requests.put(ccurl,auth=('elastic', '123456'), data=json.dumps(data), headers=headers)

위 코드는 데이터를 입력하는 코드이다. 조회하는 코드도 이런식으로 하면 된다...

당연히 reponse에 값이 들어온다.

쉬...쉽다...

반응형

+ Recent posts