香港云主机最佳企业级服务商!

ADSL拨号VPS包含了中国大陆(联通,移动,电信,)

中国香港,国外拨号VPS。

当前位置:云主机 > python >

电信ADSL拨号VPS
联通ADSL拨号VPS
移动ADSL拨号VPS

python爬虫基础教程:requests库(二)代码实例


时间:2022-04-02 10:28 作者:admin


get请求

简单使用

import requests'''想要学习python/' target='_blank'>pythonPython学习交流群:973783996满足你的需求,资料都已经上传群文件,可以自行下载!'''response = requests.get("https://www.baidu.com/")#text返回的是unicode的字符串,可能会出现乱码情况# print(response.text) #content返回的是字节,需要解码print(response.content.decode('utf-8'))  # print(response.url)       #https://www.baidu.com/# print(response.status_code)   #200# print(response.encoding)    #ISO-8859-1

添加headers和params

import requests params = {  'wd':'python'}headers = {  'User-Agent':'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36'} response = requests.get("https://www.baidu.com/s",params=params,headers=headers) #content返回的是字节,需要解码with open('baidu.html','w',encoding='utf-8') as f:  f.write(response.content.decode('utf-8'))

POST请求

爬去拉钩网职位信息

import requests url = "https://www.lagou.com/jobs/positionAjax.json?city=%E5%8C%97%E4%BA%AC&needAddtionalResult=false" data = {  'first':'true',  'pn':1,  'kd':'python'} headers = {  "User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36",  "Referer":"https://www.lagou.com/jobs/list_python?city=%E5%8C%97%E4%BA%AC&cl=false&fromSearch=true&labelWords=&suginput="} response = requests.post(url,data=data,headers=headers)# print(response.text)print(type(response.text))    #<class 'str'>print(type(response.json()))   #<class 'dict'> print(response.json())      #获取为字典的形式

使用代理

import requests proxy = {'http':'115.210.31.236.55:9000'} response = requests.get("https://www.baidu.com/",proxies=proxy) print(response.content.decode('utf-8'))

session登录

# _*_ coding:utf-8 _*_ import requests # 1. 创建session对象,可以保存Cookie值ssion = requests.session() # 2. 处理 headersheaders = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'} # 3. 需要登录的用户名和密码data = {"email":"158xxxxxxxx", "password":"pythonxxxxxxx"} # 4. 发送附带用户名和密码的请求,并获取登录后的Cookie值,保存在ssion里ssion.post("http://www.renren.com/PLogin.do", data = data) # 5. ssion包含用户登录后的Cookie值,可以直接访问那些登录后才可以访问的页面response = ssion.get("http://zhibo.renren.com/news/108") # 6. 打印响应内容print(response.text)

以上所述是小编给大家介绍的python爬虫基础教程:requests库(二)详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

(责任编辑:admin)






帮助中心
会员注册
找回密码
新闻中心
快捷通道
域名登录面板
虚机登录面板
云主机登录面板
关于我们
关于我们
联系我们
联系方式

售前咨询:17830004266(重庆移动)

企业QQ:383546523

《中华人民共和国工业和信息化部》 编号:ICP备00012341号

Copyright © 2002 -2018 香港云主机 版权所有
声明:香港云主机品牌标志、品牌吉祥物均已注册商标,版权所有,窃用必究

云官方微信

在线客服

  • 企业QQ: 点击这里给我发消息
  • 技术支持:383546523

  • 公司总台电话:17830004266(重庆移动)
  • 售前咨询热线:17830004266(重庆移动)