码迷,mamicode.com
首页 >  
搜索关键字:resp    ( 319个结果
python+requests——http basic auth认证
import requests from requests.auth import HTTPBasicAuth url = 'https://api.github.com/uesr' resp = requests.get(url,auth=HTTPBasicAuth('user','passwor ...
分类:编程语言   时间:2020-02-24 00:11:52    阅读次数:133
python+requests——检查响应头是否存在
import requests resp = requests.get('http://httpbin.org/get') print(type(resp.headers)) print(resp.headers['Content-Type']) actual_headers = {} for k, ...
分类:编程语言   时间:2020-02-23 20:08:06    阅读次数:206
python+requests——不带参数的get请求
import requests url = "http://www.baidu.com" #请求网址 yctime = 0.05 #不能超过的时间 resp = requests.get(url,timeout=yctime) print("# 1") print(type(resp.url)) # ...
分类:编程语言   时间:2020-02-22 10:06:21    阅读次数:77
大学排名数据爬取
网址:http://www.qianmu.org/ranking/1528.htm import requests from lxml import etree import lxml resp=requests.get('http://www.qianmu.org/2018QS%E4%B8%96% ...
分类:其他好文   时间:2020-02-10 22:56:08    阅读次数:177
.NetCore 简单的使用中间件
//定义中间件 app.Use(next => { return new RequestDelegate(async c => { await c.Response.WriteAsync("start-88888888888"); await next.Invoke(c); await c.Resp ...
分类:Web程序   时间:2020-01-30 12:57:03    阅读次数:132
再次遇到golang乱码问题,用simplifiedchinese解决
上篇文章中,抓取网页时,本想匹配其中的汉字。由于出现乱码,只好匹配英文绕过了问题。 原因很简单:该网页没指定utf8,默认应该是GBK 解决办法也很简单:引入 "golang.org/x/text/encoding/simplifiedchinese" 比如原来的代码是 resp, err := t ...
分类:其他好文   时间:2020-01-22 16:29:36    阅读次数:108
org.springframework.http.converter.HttpMessageNotReadableException
发起请求报错:org.springframework.http.converter.HttpMessageNotReadableException 查看请求头: application/json 所以post请求 data : 需要 data = json.dumps(data)resp = req ...
分类:编程语言   时间:2019-12-18 19:04:05    阅读次数:116
axiso 的使用
Vue官方推荐的ajax请求框架叫做:axios axios的Get请求语法: axios.get("/item/category/list?pid=0") // 请求路径和请求参数拼接 .then(function(resp){ // 成功回调函数 }) .catch(function(){ // ...
分类:其他好文   时间:2019-12-13 23:35:04    阅读次数:172
response.text与content的区别
在某些情况下来说,response.text 与 response.content 都是来获取response中的数据信息,效果看起来差不多。那么response.text 和 response.content 到底有哪些差别 ? 什么情况下该用 response.text 什么情况下该用 resp ...
分类:其他好文   时间:2019-12-12 14:39:16    阅读次数:326
Redis系列(五):Redis的RESP协议详解
一、什么是RESP Redis是Redis序列化协议,Redis客户端RESP协议与Redis服务器通信。Redis协议在以下几点之间做出了折衷: 简单的实现 快速地被计算机解析 简单得可以能被人工解析 二、RESP协议描述 RESP协议在Redis 1.2中引入,但在Redis 2.0中成为与Re ...
分类:其他好文   时间:2019-12-06 22:07:10    阅读次数:92
319条   上一页 1 ... 3 4 5 6 7 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!