python实现get请求 模块_python爬虫 基于requests模块的get请求实现详解

需求:爬取搜狗首页的页面数据

import requests

# 1.指定url

url = 'https://www.sogou.com/'

# 2.发起get请求:get方法会返回请求成功的响应对象

response = requests.get(url=url)

# 3.获取响应中的数据:text属性作用是可以获取响应对象中字符串形式的页面数据

page_data = response.text

# 4.持久化数据

with open("sougou.html","w",encoding="utf-8") as f:

f.write(page_data)

f.close()

print("ok")

requests模块如何处理携带参数的get请求,返回携带参数的请求

需求:指定一个词条,获取搜狗搜索结果所对应的页面数据

之前urllib模块处理url上参数有中文的需要处理编码,requests会自动处理url编码

发起带参数的get请求

params可以是传字典或者列表

def get(url, params=None, **kwargs):

r"""Sends a GET request.

:param url: URL for the new :class:`Request` object.

:param params: (optional) Dictionary, list of tuples or bytes to send

in the body of the :class:`Request`.

:param \*\*kwargs: Optional arguments that ``request`` takes.

:return: :class:`Response ` object

:rtype: requests.Response

import requests

# 指定url

url = 'https://www.sogou.com/web'

# 封装get请求参数

prams = {

'query':'周杰伦',

'ie':'utf-8'

}

response = requests.get(url=url,params=prams)

page_text = response.text

with open("周杰伦.html","w",encoding="utf-8") as f:

f.write(page_text)

f.close()

print("ok")

利用requests模块自定义请求头信息,并且发起带参数的get请求

get方法有个headers参数 把请求头信息的字典赋给headers参数

import requests

# 指定url

url = 'https://www.sogou.com/web'

# 封装get请求参数

prams = {

'query':'周杰伦',

'ie':'utf-8'

}

# 自定义请求头信息

headers={

'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',

}

response = requests.get(url=url,params=prams,headers=headers)

page_text = response.text

with open("周杰伦.html","w",encoding="utf-8") as f:

f.write(page_text)

f.close()

print("ok")

以上就是本文的全部内容,希望对大家的学习有所帮助

您可能感兴趣的文章:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值