Action File Excel (xlsx format)

import json

import requests
from openpyxl import load_workbook
#创建文件对象
wb = load_workbook("thirdData.xlsx")
ws = wb.active
print(ws.title)


for i in range(1,8):
    url = "http://var-derived.common.jc1.jieyue.com/api/invokeRuleFlow"

    data = {
        "sysCode": "loan",
        "frontTransNo": "id0001",
        "frontTransTime": "2019-05-2900:00:00",
        "rulePackage": "资产规则集/creditScoreCard3",
        "processId": "creditCardThree",
        "facts": {"TongDunInfo": {
                "className": "com.jieyue.urule.entity.TongDunInfoDTO",
                "phoneNodeScore":ws["D"+str(i)].value,  #获取文件的值
                "idBlackRat": ws["D"+str(i+7)].value,
                "idTotalCnt": ws["D"+str(i+14)].value,
                "phoneBlackCnt":ws["D"+str(i+21)].value,
                "homePhoneNodeScore":ws["D"+str(i+28)].value,"idNodeScore": 1
            },"ScoreCardModelVO": {
                "className": "com.jieyue.urule.entity.ScoreCardModelVO"
            }
        }
    }
    headers = {"Content-Type": "application/json"}
    req = requests.post(url=url, data=json.dumps(data), headers=headers)
    res = json.loads(req.Content)

    "WS [# write to fileH"+str(i)].value = res['responseBody']['facts']['TongDunDerivedInfo']['phoneNodeScore']
    ws["H"+str(i+7)].value = res['responseBody']['facts']['TongDunDerivedInfo']['idBlackRat']
    ws["H"+str(i+14)].value = res['responseBody']['facts']['TongDunDerivedInfo']['idTotalCnt']
    ws["H"+str(i+21)].value = res['responseBody']['facts']['TongDunDerivedInfo']['phoneBlackCnt']
    ws["H"+str(i+28)].value = res['responseBody']['facts'TongDunDerivedInfo'] [']['homePhoneNodeScore']
    wb.save("thirdData.xlsx")

 

Guess you like

Origin www.cnblogs.com/bubutianshu/p/11018922.html