利用requests获取网页的源代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用requests获取网页的源代码相关的知识,希望对你有一定的参考价值。

  1. 安装第三方模块 requests,前提:确保python中安装了pip,切换到 C:\Python27\Scripts,使用命令 pip install requests;
    技术分享图片

    技术分享图片

  2. 安装完成后,可以编写代码:

import requests

tt = requests.get("http://www.baidu.com")
print(tt.content)

可以打印出百度页面的源代码,或者保存到文件中。

  1. 具体requests的详细使用,可以参考页面
    http://docs.python-requests.org/zh_CN/latest/user/quickstart.html

以上是关于利用requests获取网页的源代码的主要内容,如果未能解决你的问题,请参考以下文章

python 用requests获取网页源代码为啥中文显示错误

爬虫基本原理代理

爬取中国大学排行榜

Python获取网页html代码

request模块

c#利用WebClient和WebRequest获取网页源代码的比较