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