소스 뷰어
import urllib.request
# 이미지 URL
url = 'https://upload.wikimedia.org/wikipedia/commons/0/08/Unequalized_Hawkes_Bay_NZ.jpg?download'
# 이미지를 다운로드하여 파일로 저장
urllib.request.urlretrieve(url, 'histogram_example.jpg')
# 화면에 이미지 출력
import matplotlib.pyplot as plt
plt.imshow( plt.imread( 'histogram_example.jpg' ) )
plt.show()