程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> python模塊PycURL實例講解

python模塊PycURL實例講解

編輯:PHP綜合
PycURl是一個C語言寫的libcurl的Python綁定庫,是一個自由的,並且容易使用的用在客戶端的 URL 傳輸庫。本文來通過PycURL實例理解PycURL庫。

在Linux上有個常用的命令 curl(非常好用),支持curl的就是大名鼎鼎的libcurl庫;libcurl是功能強大的,而且是非常高效的函數庫。libcurl除了提供本身的C API之外,還有多達40種編程語言的Binding,這裡介紹的PycURL就是libcurl的Python binding。

在Python中對網頁進行GET/POST等請求,當需要考慮高性能的時候,libcurl是非常不錯的選擇,一般來說會比liburl、liburl2快不少,可能也會比Requests的效率更高。特別是使用PycURL的多並發請求時,更是效率很高的。個人感覺,其唯一的缺點是,由於是直接調用的是libcurl C庫,PycURL的函數接口之類的還和C中的東西很像,可能不是那麼的Pythonic,寫代碼的學習曲線稍微比liburl高一點兒。

還是看個簡單的例子吧:

 代碼如下 復制代碼 #! /usr/bin/env Python
# -*- coding: utf-8 -*-
 
'''
Created on Dec 15, 2013
 
@author: Jay
'''
 
import sys
import pycurl
import time
 
class Test:
    def __init__(self):
        self.contents = ''
 
    def body_callback(self, buf):
        self.contents = self.contents + buf
 
sys.stderr.write("Testing %sn" % pycurl.version)
 
start_time = time.time()
 
url = 'http://www.dianping.com/shanghai'
t = Test()
c = pycurl.Curl()
c.setopt(c.URL, url)
c.setopt(c.WRITEFUNCTION, t.body_callback)
c.perform()
end_time = time.time()
duration = end_time - start_time
print c.getinfo(pycurl.HTTP_CODE), c.getinfo(pycurl.EFFECTIVE_URL)
c.close()
 
print 'pycurl takes %s seconds to get %s ' % (duration, url)
 
print 'lenth of the content is %d' % len(t.contents)
#print(t.contents)
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved