티스토리 뷰
import urllib2, time
date = urllib2.urlopen('http://quasarzone.co.kr').headers['Date']
time = time.strptime(date, '%a, %d %b %Y %H:%M:%S %Z')
print time.tm_hour, time.tm_min
댓글
import urllib2, time
date = urllib2.urlopen('http://quasarzone.co.kr').headers['Date']
time = time.strptime(date, '%a, %d %b %Y %H:%M:%S %Z')
print time.tm_hour, time.tm_min