使用pycurl和端口号检索url的源代码?

时间:2015-05-23 07:32:43

标签: python linux python-2.7 ubuntu pycurl

是否有任何方法可以检索url源代码并将其存储在字符串中,前提是在pycurl模块中定义了特定端口,以便它适用于代理网络。 平台 - ubuntu或任何其他Linux发行版

1 个答案:

答案 0 :(得分:0)

使用此代码获取网址

from StringIO import StringIO    
import pycurl

url = 'http://www.google.com/'

storage = StringIO()
c = pycurl.Curl()
c.setopt(c.URL, url)
c.setopt(c.WRITEFUNCTION, storage.write)
c.perform()
c.close()
content = storage.getvalue()
print content