码迷,mamicode.com
首页 >  
搜索关键字:libcurl pycurl    ( 519个结果
python测试网站访问速度
# -*- coding: utf-8 -*- # @Author : Felix Wang # @time : 2018/8/13 22:13 # pip3 install pycurl import pycurl from io import BytesIO def test_website(u... ...
分类:编程语言   时间:2018-08-13 23:48:35    阅读次数:286
使用libcurl的包装库cpr发起http请求
cpr GitHub地址https://github.com/whoshuu/cpr 简单示例:cpr_http_request.cpp ...
分类:Web程序   时间:2018-07-26 14:53:34    阅读次数:386
怎样一键检测域名或url是否正常解析并传输
好久没有写博客了,现在重新拾起来,我想还不算晚。工作中,经常会有人抱怨:网站好卡,dns是不是有问题......有没有一键的方式了解到是dns解析的问题还是网络传输导致的吗?有。可以写一些脚本检查。shell可以充分利用curl工具编写脚本,python可以充分利用pycurl模块编写脚本。
分类:Web程序   时间:2018-07-20 15:18:01    阅读次数:480
使用s3fs-fuse在AWS Linux实例上挂载S3存储桶
一、安装s3fs以及依赖包????1. 安装依赖包On?CentOS7?or?AMI?Linux?7: #?yum?install?automake?fuse?fuse-devel?gcc-c++?git?libcurl-dev
分类:系统相关   时间:2018-07-18 17:05:39    阅读次数:870
pycurl安装
pip install pycurl 出现:Could not run curl-config: [Errno 2] No such file or directory: 'curl-config': 'curl-config' 解决:yum install libcurl-devel 再pip i ...
分类:Web程序   时间:2018-07-16 14:58:57    阅读次数:240
7-6
ython请求数据 基本的HTTP协议知识后,大家可能会疑问那我该如何模仿浏览器或者手机客户端去向服务器发送HTTP请求呢?python的原生库urllib、第三方库requests、pycurl等都支持HTTP协议,既然有这么多工具可以用,大家可能就又有疑问该选择哪个工具了。在此我特地安利大家用一 ...
分类:其他好文   时间:2018-07-06 19:44:21    阅读次数:169
CentOS 6 升级 curl
zabbix 发邮件报 Support for SMTP authentication was not compiled in 其实出现这种问题的原因是我们机器上的 libcurl 版本太低所致。在zabbix的官方说明文档上我们可以知道:zabbix3.x要想使用SMTP,那么需要7.20.0及以 ...
分类:Web程序   时间:2018-07-02 13:06:29    阅读次数:450
libcurl
"ios开发之libcurl库的编译详细教程 CSDN博客" "build libcurl ios源码编译 简书" "iOS开发之libcurl库的使用 CSDN博客" "libcurl curl_easy_getinfo()" "使用 cURL 获取站点的各类响应时间 – dns解析时间,响应时间 ...
分类:Web程序   时间:2018-07-01 14:15:27    阅读次数:195
install pycurl
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1src/pycurl.h:164:28: fatal error: openssl/ssl.h: No such file or directorycompilation t ...
分类:Web程序   时间:2018-06-17 10:57:51    阅读次数:391
http消息结构
一:消息结构 http是基于客户端/服务端(c/s)的架构模型,通过一个可靠的链接来交换信息,是一个无状态的请求/响应协议。 一个http客户端是一个应用程序(web浏览器或者其他任何客户端),通过连接服务器达到向服务器发送一个或者多个http请求的目的。 一个http服务器同样也是一个应用程序(通 ...
分类:Web程序   时间:2018-06-14 15:10:14    阅读次数:427
519条   上一页 1 ... 9 10 11 12 13 ... 52 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!