码迷,mamicode.com
首页 > 其他好文 > 详细

gat和post封装代码

时间:2018-08-13 23:50:23      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:覆盖   pen   bytes   gecko   like   fan   exce   app   函数   

from urllib import request, parse
from urllib.error import HTTPError, URLError

def get(url, headers=None):
return urlrequests(url, headers=headers)
  #必须写headers,因为按顺序走会form

def post(url, form, headers=None):
return urlrequests(url, form, headers=headers)

#b. post(url, form, headers=None)


def urlrequests(url, form=None, headers=None):
user_agent = ‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36‘
# 如果用户需要自行传入headers, 则覆盖之前的headers
if headers == None:
headers = {
‘User-Agent‘: user_agent
}
html_bytes = b‘‘
try:
if form:
# POST请求
# 2.1 转换成str
form_str = parse.urlencode(form)
#print(form_str)
# 2.2 转换成bytes
form_bytes = form_str.encode(‘utf-8‘)
req = request.Request(url, data=form_bytes, headers=headers)
else:
# GET请求
req = request.Request(url, headers=headers)
response = request.urlopen(req)
html_bytes = response.read()
except HTTPError as e:
print(e)
except URLError as e:
print(e)

return html_bytes

if __name__ == ‘__main__‘:
  
  url = ‘http://fanyi.baidu.com/sug‘
  #1,准备数据
  form = {
  ‘kw‘: ‘呵呵‘
  }
  html_bytes = post(url, form=form)
  #2,调到函数  
  print(html_bytes)
  #3,打印

  # url = ‘http://www.baidu.com‘
  # html_byte = get(url)
  # print(html_byte)
  

  

gat和post封装代码

标签:覆盖   pen   bytes   gecko   like   fan   exce   app   函数   

原文地址:https://www.cnblogs.com/wopuchezhan/p/9471573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!