Skip to content

fetch

爬取网站记录,效率是自己写记录的百倍。

import urllib.request

url = '...'

response = urllib.request.urlopen(url)

html = response.read()

print(html)

联系 math@baima.site