Commit 0bf688c3 by 岳巧源

modify script

parent 4d47ba28
Showing with 3 additions and 7 deletions
...@@ -17,7 +17,7 @@ txt文件都是固定文件名 ...@@ -17,7 +17,7 @@ txt文件都是固定文件名
此脚本每天晚上 23:40运行 用于解析当天上传的文件 此脚本每天晚上 23:40运行 用于解析当天上传的文件
""" """
ftp_remote_path_csv = "/Chip1Stop_TI_included_" + datetime.datetime.now().strftime("%Y%m%d") + "_ETCHIPS.csv.gz" ftp_remote_path_csv = "/Chip1Stop_TI_included_" + datetime.datetime.now().strftime("%Y%m%d") + "_ETCHIPS.csv.gz"
ftp_remote_path_txt = "/Chip1StopStockList RMB_Anjie_US Stock.txt.gz" ftp_remote_path_txt = "/Chip1StopStockList_TI_in_ RMB_Anjie_RMB.txt.gz"
"""暂时设置为当前路径""" """暂时设置为当前路径"""
# file_local_path_csv = "." + ftp_remote_path_csv # file_local_path_csv = "." + ftp_remote_path_csv
...@@ -179,6 +179,7 @@ class DataUtil: ...@@ -179,6 +179,7 @@ class DataUtil:
return return
with open(file_path, errors='ignore') as f: with open(file_path, errors='ignore') as f:
content_list = f.readlines() content_list = f.readlines()
print(content_list[0].split("\t"))
for index in range(len(content_list)): for index in range(len(content_list)):
if index > 100: if index > 100:
break break
...@@ -189,7 +190,7 @@ class DataUtil: ...@@ -189,7 +190,7 @@ class DataUtil:
table = dict() table = dict()
"""RMB接口 都是txt文件格式""" """RMB接口 都是txt文件格式"""
table["price_is_us"] = False table["price_is_us"] = False
table["supplier_name"] = "" table["supplier_name"] = "Chip1stop-CN"
table["multiple"] = "1" table["multiple"] = "1"
table["batch_sn"] = {} table["batch_sn"] = {}
table["eccn"] = "" table["eccn"] = ""
...@@ -279,10 +280,6 @@ class Producer: ...@@ -279,10 +280,6 @@ class Producer:
print(e) print(e)
# TODO 美元和人民币接口的供应商不一样
"""
供应商的名字记得修改
"""
if __name__ == '__main__': if __name__ == '__main__':
if ENV == "test": if ENV == "test":
config = config_test config = config_test
...@@ -294,4 +291,3 @@ if __name__ == '__main__': ...@@ -294,4 +291,3 @@ if __name__ == '__main__':
# u.download(ftp_remote_path_txt, file_local_path_txt) # u.download(ftp_remote_path_txt, file_local_path_txt)
# u.ungz(file_local_path_txt) # u.ungz(file_local_path_txt)
u.handle_txt(file_local_path_txt.replace(".gz", "")) u.handle_txt(file_local_path_txt.replace(".gz", ""))
# u.handle_txt()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment