1 Star 0 Fork 0

join/cwp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
start.py 1011 Bytes
一键复制 编辑 原始数据 按行查看 历史
join 提交于 2021-07-20 16:59 . Create start.py
#!/usr/bin/python
from service import prpinsdb3
import datetime
import time
import sys
import os
print("程序开始运行...")
prpins = prpinsdb3()
def start():
startdate = prpins.getMaxCarUpdate()
startdate = (startdate + datetime.timedelta(1)).strftime("%Y-%m-%d")
today = datetime.datetime.now().strftime("%Y-%m-%d")
while startdate < today:
print(f"提取数据 {startdate}")
prpins.saveClaimCar(startdate=startdate)
prpins.saveClaimProp(startdate=startdate)
time.sleep(2)
startdate = (datetime.datetime.strptime(startdate, "%Y-%m-%d") + datetime.timedelta(1)).strftime("%Y-%m-%d")
print(f"数据提取完成")
def start_1(startdate):
print(f"提取单日数据 {startdate}")
prpins.saveClaimCar(startdate=startdate)
prpins.saveClaimProp(startdate=startdate)
print(f"数据提取完成")
if len(sys.argv) == 1:
print("开始自动提取业务数据")
start()
else:
# #print(sys.argv[1])
start_1(sys.argv[1])
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/none-2913/cwp.git
git@gitee.com:none-2913/cwp.git
none-2913
cwp
cwp
main

搜索帮助