如何获取当前日期数据 - Python

时间:2017-10-16 07:18:07

标签: python python-3.x python-3.5 python-3.6 python-datetime

下面是我的代码,它抓取数据并将数据转换为CSV文件(这是有效的)。我试图只关注当前日期返回的数据。

有人可以告诉我这是怎么做的,DTDT是约会对象。

目前,CSV中填充了我不想要的随机日期数据。

我的代码:

from elasticsearch import Elasticsearch
import csv

es = Elasticsearch(["9200"])

# Replace the following Query with your own Elastic Search Query
res = es.search(index="search", body=
                {
                    "_source": ["DTDT", "TRDT", "SPLE", "RPLE"],
                    "query": {
                        "bool": {
                            "should": [
                                {"wildcard": {"CN": "TEST*"}}

                            ]
                        }
                    }
}, size=10)



header_names = { 'DTDT': 'DATE', 'TRDT': 'TIME', ...}

with open('mycsvfile.csv', 'w') as f:  # Just use 'w' mode in 3.x
    header_present  = False
    for doc in res['hits']['hits']:
        my_dict = doc['_source'] 
        if not header_present:
            w = csv.DictWriter(f, my_dict.keys())
            w.writerow(header_names)  # will write DATE, TIME, ... in correct place
            header_present = True


        w.writerow(my_dict)

例如,我希望数据仅返回并显示在今天的CVS中。

0 个答案:

没有答案