CSVの2つの列で 'NCR'のデータを使用しようとしています。しかし、それはお互いを無効にし、「YesterdayTime」という列のデータのみを提示しました。2つの列のデータの収集
’ExTime’
と‘YesterdayTime’
の両方の列で 'NCR'のデータを使用する方法はありますか?
マイコード
from datetime import datetime
from elasticsearch import Elasticsearch
import csv
es = Elasticsearch(["9200"])
res = es.search(index="search", body=
{
"_source": ["VT","NCR","N","DT","RD"],
"query": {
"bool": {
"must": [{"range": {"VT": {
"gte": "now/d",
"lte": "now+1d/d"}}},
{"wildcard": {"user": "mike*"}},
{"wildcard": {"user": "jane*"}},
{"wildcard": {"user": "kate*"}},
{"wildcard": {"user": "dave*"}},
{"wildcard": {"user": "rich*"}}
]}}},size=10)
csv_file = 'File_' + str(datetime.now().strftime('%Y_%m_%d - %H.%M.%S')) + '.csv'
header_names = { 'VT': 'Date', 'NCR': 'ExTime', 'NCR': 'YesterdayTime', 'N': 'Name', 'DT': 'Party', ' RD ': 'Period'}
with open(csv_file, 'w', newline='') as f:
w = csv.DictWriter(f, fieldnames=header_names.keys(), restval='', extrasaction='ignore')
w.writerow(header_names,)
for doc in res['hits']['hits']:
my_dict = doc['_source']
w.writerow(my_dict)
出力 - EX time
はYesterdayTime
に置き換えられています。私が欲しい
DATE YesterdayTime Name Party Period
20170512 12/05/2017 15:39 1001 0 0
20170512 12/05/2017 15:39 1001 0 0
20170908 08/09/2017 02:42 1001 0 0
20170908 08/09/2017 06:30 1001 0 0
正しい出力:
DATE YesterdayTime YesterdayTime Name Party Period
20170512 12/05/2017 15:39 12/05/2017 15:39 1001 0 0
20170512 12/05/2017 15:39 12/05/2017 15:39 1001 0 0
20170908 08/09/2017 02:42 08/09/2017 02:42 1001 0 0
20170908 08/09/2017 06:30 08/09/2017 06:30 1001 0 0
正しい、どのように私は3列のためのNSCを使用することができています? –