def chairs()

in scripts/committee_info.py [0:0]


def chairs():

    committees = cidata['committees']

    chairjson={}
    for ctte in committees:
        c = committees[ctte]
        if not c['pmc']:
            continue
        chs = c['chair']
        ch = None
        for ch in chs: # allow for multiple chairs
            break
        name = 'Apache %s' % c['display_name']
        if ch:
            chairjson[name] = chs[ch]['name']

    return chairjson