我正在使用https://first-web-scraper.readthedocs.io/en/latest/学习如何构建网页抓取工具。
我已经到了本教程要求将下面的代码保存到scrape.py
,然后运行python scrape.py
的地步。它说应该在终端中吐出html代码。对我来说这不是真的,只是空白。有人知道为什么吗?
import requests
url = 'http://www.showmeboone.com/sheriff/JailResidents/JailResidents.asp'
response = requests.get(url)
html = response.content
print html