zoukankan      html  css  js  c++  java
  • python:解析requests返回的response(json格式)

    import requests, json
    
    r = requests.get('http://192.168.207.160:9000/api/qualitygates/project_status?projectId=%s' % (p_uuid) )
    
    state=json.loads(r.text).get('projectStatus').get('status')

    返回如下:

    {
        "projectStatus": {
            "status": "ERROR",
            "conditions": [{
                "status": "ERROR",
                "metricKey": "new_security_rating",
                "comparator": "GT",
                "periodIndex": 1,
                "errorThreshold": "1",
                "actualValue": "5"
            }, {
                "status": "ERROR",
                "metricKey": "new_reliability_rating",
                "comparator": "GT",
                "periodIndex": 1,
                "errorThreshold": "1",
                "actualValue": "4"
            }, {
                "status": "OK",
                "metricKey": "new_maintainability_rating",
                "comparator": "GT",
                "periodIndex": 1,
                "errorThreshold": "1",
                "actualValue": "1"
            }, {
                "status": "ERROR",
                "metricKey": "new_coverage",
                "comparator": "LT",
                "periodIndex": 1,
                "errorThreshold": "80",
                "actualValue": "0.0"
            }, {
                "status": "ERROR",
                "metricKey": "new_duplicated_lines_density",
                "comparator": "GT",
                "periodIndex": 1,
                "errorThreshold": "3",
                "actualValue": "5.967688757006265"
            }],
            "periods": [{
                "index": 1,
                "mode": "previous_version",
                "date": "2019-05-31T09:35:58+0800"
            }],
            "ignoredConditions": false
        }
    }
  • 相关阅读:
    设置 menu 菜单 监听
    在 flash.net.FileReference 上找不到属性 save,且没有默认值。
    swf获取当前页面的路径
    控制舞台缩放比例
    相对于自身的坐标位移
    tweenmax
    exe文件反编译为源文件
    spring 整合 spring mvc
    springmvc学习第四天
    springmvc学习第三天
  • 原文地址:https://www.cnblogs.com/gcgc/p/10956778.html
Copyright © 2011-2022 走看看