如何关闭urllib2连接?

时间:2011-07-05 23:23:41

标签: python connection urllib ddos

我使用urllib2创建了一个程序,它在网络上建立了很多连接。我注意到最终这可能是DDoS值得的;我想知道在完成业务以防止这种攻击之后如何关闭每个连接。

我用来打开连接的代码是:

cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
r = opener.open("http://www.python.org)
html = r.read()

3 个答案:

答案 0 :(得分:7)

我假设您使用urlopen()函数打开它们。 Its documentation州:

  

此函数返回一个类似文件的对象,其中包含两个方法:

作为类似文件的对象,它可以使用close方法调用:

connection = urllib2.urlopen(url)
# Do cool stuff in here.
connection.close()

更新:使用您添加到问题中的代码:

>>> import urllib2
>>> import cookielib
>>> cj = cookielib.CookieJar()
>>> opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
>>> r = opener.open("http://www.python.org")
>>> html = r.read()
>>> r.close??
Type:  instancemethod
Base Class: <type 'instancemethod'>
String Form: <bound method addinfourl.close of <addinfourl at 150857644 whose fp = <socket._fileobject object at 0x8fd48ec>>>
Namespace: Interactive
File:  /usr/lib/python2.6/urllib.py
Definition: r.close(self)
Source:
    def close(self):
        self.read = None
        self.readline = None
        self.readlines = None
        self.fileno = None
        if self.fp: self.fp.close()
        self.fp = None

因此close()方法存在并实际执行某些操作:

>>> r.close()
>>> r.read()
------------------------------------------------------------
Traceback (most recent call last):
  File "<ipython console>", line 1, in <module>
TypeError: 'NoneType' object is not callable

答案 1 :(得分:2)

你的问题非常模糊。

但这是一个在使用后关闭连接的示例:

f = urllib2.urlopen(req)
f.read()
f.close()

答案 2 :(得分:0)

一旦获得响应,套接字连接将自动关闭。因此,您没有显式关闭urllopen对象,它会在套接字级别自动发生。