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