일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- plugin
- 900gle
- high level client
- 파이썬
- zip 암호화
- docker
- matplotlib
- License
- Kafka
- aggs
- MySQL
- Test
- Java
- token filter test
- license delete
- Mac
- query
- Python
- Elasticsearch
- analyzer test
- ELASTIC
- zip 파일 암호화
- springboot
- licence delete curl
- flask
- TensorFlow
- aggregation
- API
Archives
- Today
- Total
목록data (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