예제 #1
0
def download_one(country):
    image = get_flag(country)
    show(country)
    save_flag(image, country.lower() + '.png')
    return country
예제 #2
0
def download_one(cc):
    image = get_flag(cc)
    show(cc)
    save_flag(image, cc.lower() + '.gif')
    return cc