本文介绍了是否有一个等同于php's curl_getinfo的python库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
PHP的 curl_getinfo
返回有关请求时间的详细分类(请参阅了解更多信息)。
PHP's curl_getinfo
returns detailed breakdown about request time (see the docs for more details). Is there a python library that can do the same thing?
推荐答案
具有
import pycurl
import cStringIO
curl = pycurl.Curl()
buff = cStringIO.StringIO()
curl.setopt(pycurl.URL, 'http://example.org')
curl.setopt(pycurl.WRITEFUNCTION, buff.write)
curl.perform()
print "status code: %s" % curl.getinfo(pycurl.HTTP_CODE)
这篇关于是否有一个等同于php's curl_getinfo的python库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!