5AMSUNG

[python] python elasticsearch analyze test 본문

Python

[python] python elasticsearch analyze test

짝구이 2023. 3. 14. 22:39
반응형
client = Elasticsearch("https://id:pw@host:port/", ca_certs=False,
                       verify_certs=False)

 

 

def get_query():
    response_n = client.indices.analyze(
        index=INDEX_NAME,
        body={
            "analyzer": "index_analyzer",
            "text": "프랑스_떼땅져녹턴시티라이트_750ML"
        }
    )

    print(response_n)
반응형

'Python' 카테고리의 다른 글

[python] 날짜 다루기  (1) 2023.05.08
[python] mysql 연동 - PyMySQL  (0) 2023.05.08
[python] DB data to json file  (0) 2023.05.08
[ChatGPT] 프로그래밍 언어중 유망한 언어는?  (0) 2023.03.26
[es] python elasticsearch analyze test  (0) 2023.03.16