Create TOC

2006년 12월 1일

Python/socket에 timeout 설정

출처는 http://www.voidspace.org.uk/python/articles/urllib2.shtml

import socket
import urllib2

# timeout in seconds
timeout = 10
socket.setdefaulttimeout(timeout)

# this call to urllib2.urlopen now uses the default timeout
# we have set in the socket module
req = urllib2.Request('http://www.voidspace.org.uk')
response = urllib2.urlopen(req)