예제 #1
0
파일: utils.py 프로젝트: deepak02/xyz_gpod
def license_name(license_url):
    """ returns a "pretty" license name for a license URL """

    info = license_info(license_url)

    if info.name:
        return '%s %s' % (info.name, info.version or '')

    return info.url
예제 #2
0
파일: utils.py 프로젝트: Korvox/mygpo
def license_name(license_url):
    """ returns a "pretty" license name for a license URL """

    info = license_info(license_url)

    if info.name:
        return "%s %s" % (info.name, info.version or "")

    return info.url