urllib.request
import urllib.request as req
import os
with req.urlopen('http://note7.hyuki.net/') as rf:
with open('output.html', 'w') as wf:
for line in rf:
'utf-8'))
wf.write(line.decode(
'open -a Safari output.html') os.system(