일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- sort
- Test
- aggregation
- springboot
- aggs
- ELASTIC
- licence delete curl
- docker
- TensorFlow
- Mac
- zip 파일 암호화
- high level client
- 파이썬
- Java
- token filter test
- analyzer test
- API
- 차트
- plugin
- zip 암호화
- query
- 900gle
- flask
- Kafka
- matplotlib
- Elasticsearch
- license delete
- MySQL
- License
- Python
Archives
- Today
- Total
목록JSON (1)
개발잡부
[python] test dataset (json) 파일 만들기
데이터 셋으로 활용할 test 데이터를 만들어 보자 원천데이터는 900gle shopping 의 데이터를 활용. create_dataset.py # -*- coding: utf-8 -*- import json from elasticsearch import Elasticsearch def create(): script_query = { "match_all": {} } response = client.search( index=INDEX_NAME, body={ "size": SEARCH_SIZE, "query": script_query, "_source": ["name"] } ) es_data = [] for hit in response["hits"]["hits"]: row = dict(name=str(hi..
Python
2022. 6. 26. 10:41