import zingu_apis
api = zingu_apis.api("sonarqube")
result = api.fetch("api/project_analyses/search", branch="feature/my_branch", category="OTHER", from="2013-05-01", p=42, project="my_project", ps=20, to="2017-10-19 or 2017-10-19T13:00:00+0200")
for item in result:
print(item)
const resp = await fetch("https://sonarcloud.io/api/project_analyses/search?branch=feature%2Fmy_branch&category=OTHER&from=2013-05-01&p=42&project=my_project&ps=20&to=2017-10-19+or+2017-10-19T13%3A00%3A00%2B0200");
const data = await resp.json();