Python调取Sonar API获取对应数据
Posted CrissChan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python调取Sonar API获取对应数据相关的知识,希望对你有一定的参考价值。
找了很多Sonar的Python封装,发现都不好用,因此自己做了小封装。具体如下:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
\'\'\'
@File : sonar_snapshot.py
@Time : 2021/12/14 14:27:42
@Author : CrissChan
@Version : 1.0
@Site : https://blog.csdn.net/crisschan
@Desc : for the sonarqube\'s Measures
\'\'\'
# here put the import lib
import requests
from requests.models import HTTPBasicAuth
import json
class SonarSnapshot(
以上是关于Python调取Sonar API获取对应数据的主要内容,如果未能解决你的问题,请参考以下文章