第八节 request发送get请求和post请求

Posted kogmaw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第八节 request发送get请求和post请求相关的知识,希望对你有一定的参考价值。

 1 import requests
 2 kw = {wd:"中国"}
 3 headers = {
 4     "User-Agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/63.0.3239.132 Safari/537.36"
 5 }
 6 resp = requests.get(http://www.baidu.com/s,params=kw, headers=headers)
 7 print(type(resp.content))#返回的源代码以二进制储存
 8 print(type(resp.text))#将上面的数据自行解码后的数据,但是经常会出现乱码,一般自行解码
 9 print(resp.content.decode(utf-8))
10 print(resp.url)#返回网址
11 print(resp.encoding)#返回编码方式
12 print(resp.status_code)#响应状态码
 1 import requests
 2 import json
 3 
 4 
 5 headers = {
 6     "User-Agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36",
 7     "Referer":"https://www.lagou.com/jobs/list_python?labelWords=&fromSearch=true&suginput="
 8 }
 9 data = {
10     "first":"true",
11     "pn":1,
12     "kd":"python"
13 }
14 resp = requests.post("https://www.lagou.com/jobs/list_python?labelWords=&fromSearch=true&suginput=",data=data,headers=headers)
15 print(resp.text)

 

以上是关于第八节 request发送get请求和post请求的主要内容,如果未能解决你的问题,请参考以下文章

Jmeter请求元件之Jmeter request 发送get请求和post请求

Jmeter请求元件之Jmeter request 发送get请求和post请求

requests不带参数的get请求和带get参数请求

ajax的get 和post方式发送请求

python中request的get和post请求方法详解

大概看了一天python request源码。写下python requests库发送 get,post请求大概过程。