python3网络爬虫 (1)-最简单的请求网页

  1. 首先安装 python3 环境(详细的安装方法,百度上很多)

  2. 在E盘新建 python3-webcrawler 目录(后面所有爬虫文件均放在该目录中)

  3. 新建 1.py 文件,将以下代码拷贝到文件中

from urllib.request import urlopen
html = urlopen("http://www.toutiao.com/")
print(html.read())
  1. 按住 shift 建,鼠标右键点击 python3-webcrawler, 然后点击“在此处打开命令窗口”
  2. 运行命令 python 1.py , 可以看到爬取到的结果,如下图


    python3网络爬虫 (1)-最简单的请求网页

你可能感兴趣的:(python3网络爬虫 (1)-最简单的请求网页)