2
我正在運行以下代碼,試圖在某些HTML中查找特定信息。我有一個編碼/解碼問題,但是,我無法解決。從urllib請求獲取unicode
import urllib
req = urllib.urlopen('http://securities.stanford.edu/1046/AAI00_01/')
html = req.read()
type(html)
# <type 'str'>
html.upper().find('HTML')
# -1
print html[0:20]
# ??<HTML><HE
html[0:10]
# '\xff\xfe<\x00H\x00T\x00M\x00'
req.headers['content-type']
# 'text/html'
html = html.encode('utf-8')
# Traceback (most recent call last):
# File "<stdin>", line 1, in <module>
# UnicodeDecodeError: 'ascii' codec can't decode byte 0xff in position 0: ordinal not in range(128)
這個問題的解決方案是什麼?我需要做的就是使用.find和正則表達式從頁面中獲取一些信息。
我使用Mac OSX並從終端內運行Python 2.6.1。