第一个Web爬虫不吐HTML

时间:2019-05-16 19:24:10

标签: python python-2.7 web-scraping

我正在使用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

0 个答案:

没有答案