diff --git a/eda/gray_stat/ffm_get_data.py b/eda/gray_stat/ffm_get_data.py new file mode 100644 index 0000000000000000000000000000000000000000..de7a55436f7e2dc64b7f187634d27b995f86e9c1 --- /dev/null +++ b/eda/gray_stat/ffm_get_data.py @@ -0,0 +1,39 @@ +import pymysql +import datetime + +DIRECTORY_PATH="/data2/ffm/" + +def get_yesterday_date(): + #自动获å–昨天的日期,如"2018-08-08" + """ + :rtype : str + """ + today = datetime.date.today() + yesterday = today - datetime.timedelta(days=1) + yesterday = yesterday.strftime("%Y%m%d") + return yesterday + #today = datetime.date.today().strftime("%Y%m%d") + #return today + +def get_data(): + conn2db = pymysql.connect(host='10.66.157.22', port=4000, user='root', passwd='3SYz54LS9#^9sBvC', db='eagle') + cursor = conn2db.cursor() + sql = "select device_id,city_id from eagle.ffm_diary_queue_temp where device_id regexp '[5|6]$'" + cursor.execute(sql) + result = cursor.fetchall() + cursor.close() + conn2db.commit() + return result + + +def result2file(data): + output = DIRECTORY_PATH + "ffm_get_data_" + get_yesterday_date + ".csv" + with open(output,"w") as f: + for i in data: + line = str(i[0]) + "," + str(i[1]) + "\n" + f.write(line) + + +if __name__ == "__main__": + result = get_data() + result2file(result) diff --git a/ffm_get_data.py b/ffm_get_data.py new file mode 100644 index 0000000000000000000000000000000000000000..b7946ea9f78aaf753846834858621d3fbe910eb9 --- /dev/null +++ b/ffm_get_data.py @@ -0,0 +1,38 @@ +import pymysql +import datetime + +DIRECTORY_PATH="/data2/ffm/" + +def get_yesterday_date(): + #自动获å–昨天的日期,如"2018-08-08" + """ + :rtype : str + """ + today = datetime.date.today() + yesterday = today - datetime.timedelta(days=1) + yesterday = yesterday.strftime("%Y%m%d") + return yesterday + #today = datetime.date.today().strftime("%Y%m%d") + #return today + +def get_data(): + conn2db = pymysql.connect(host='10.66.157.22', port=4000, user='root', passwd='3SYz54LS9#^9sBvC', db='eagle') + cursor = conn2db.cursor() + sql = "select device_id from eagle.ffm_diary_queue_temp where device_id regexp '[5|6]$'" + cursor.execute(sql) + result = cursor.fetchall() + cursor.close() + return result + + +def result2file(data): + output = DIRECTORY_PATH + "ffm_get_data_" + get_yesterday_date + ".csv" + with open(output,"w") as f: + for i in data: + line = str(i[0]) + "," + str(i[1]) + "\n" + f.write(line) + + +if __name__ == "__main__": + result = get_data() + result2file(result) \ No newline at end of file