Encoding problem downloading HTML using mechanize

2020-03-24 10:46发布

browser = mechanize.Browser()
page = browser.open(url)
html = page.get_data()

print html

It shows some strange characters. I suppose that it is UTF-8 string but Python doesn't know that and cannot show it properly.

How can I convert this string to unicode string like

u = u'test'

3条回答
祖国的老花朵
2楼-- · 2020-03-24 11:07
u = html.decode('utf-8')
查看更多
Juvenile、少年°
3楼-- · 2020-03-24 11:18

you need to define the encoding like :

#!/usr/bin/python
# -*- coding: iso-8859-15 -*-

mechanize need it .

for more information check this out http://www.python.org/dev/peps/pep-0263/

查看更多
手持菜刀,她持情操
4楼-- · 2020-03-24 11:27

It was gzipped

def ungzipResponse(r,b):
    headers = r.info()
    if headers['Content-Encoding']=='gzip':
        import gzip
        gz = gzip.GzipFile(fileobj=r, mode='rb')
        html = gz.read()
        gz.close()
        headers["Content-type"] = "text/html; charset=utf-8"
        r.set_data( html )
        b.set_response(r)

response = browser.open(url)
ungzipResponse(response, browser)
html = response.read()
查看更多
登录 后发表回答