cara mengunduh halaman dalam python

import urllib.request, urllib.error, urllib.parse
url = "The url of the page you want to download"
response = urllib.request.urlopen(url)
Phil the ice cream man