def get_checkers()

in playbooks/library/update_checkers.py [0:0]


def get_checkers(token):
    url = GERRIT_URL + '/a/plugins/checks/checkers/'
    data = requests.get(url, cookies={'o': token}).text
    return json.loads(data[4:])