Depending on the value, show only selected items (selected=selected), deselected items (selected=deselected), or all items with their selection status (selected=all).
import zingu_apis
api = zingu_apis.api("sonarqube")
result = api.fetch("api/qualityprofiles/projects", key="AU-Tpxb--iU5OvuD2FLy", p=42, ps=20, q="sonar")
for item in result:
print(item)
const resp = await fetch("https://sonarcloud.io/api/qualityprofiles/projects?key=AU-Tpxb--iU5OvuD2FLy&p=42&ps=20&q=sonar");
const data = await resp.json();