#! /usr/bin/python3 import json, sys json = json.load(sys.stdin) members = [] for member in json: name = None github = '--' for names in member: if type(names) == type({}): if 'github' in names: github = names['github'] elif names.find(' ') != -1: name = names if name and github: if github == '--': url = 'https://github.com/openssl' else: url = 'https://github.com/' + github members.append("%s%s" % \ (name, url, github)) members.sort() for m in members: print(m)