2020-12-01

网络爬虫:http协议:建立请求,服务器响应,响应内容,判断状态判断;接受内容。提取内容;关闭网络。
urrlib requests

1.导入模块
import urllib
import urllib.request
import requests
2.构建基本参数
url = 'http://zy.imau.edu.cn'
#其他参数基本字典格式
parmesan= {'page':2}
headers = {'User-Agent':Mozilla/5.0(Windows NT 6.1)AppleWebkit/537.36}
cookies = {}
proxy = {}
3.请求处理
try:
#发送请求
  opener=urllib.request.FancyURLopener()
  opener.open()
  response=urllib.request.urlopen(url)
#响应内容
if response.getcode()==200:
  pass
else:
  print('响应失败')
except Exception as e:
  print(e)
  pass
  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值