阿神2017-04-18 10:00:42
# -*- coding: utf-8 -*-
import requests
from bs4 import BeautifulSoup
url = 'http://nj.lianjia.com/xiaoqu/'
html = requests.get(url)
soup = BeautifulSoup(html.text.encode(html.encoding), 'lxml', from_encoding='utf-8')
title = soup.title.get_text()
print(title)
1) Add # -- coding: utf-8 --statement
2) Correctly handle the encoding of the returned response
高洛峰2017-04-18 10:00:42
That’s right upstairs, in fact you can also use Latin1
encoding to decode this text.
import requests
from bs4 import BeautifulSoup
url = 'http://nj.lianjia.com/xiaoqu/'
html = requests.get(url)
soup = BeautifulSoup(html.text, 'lxml')
title = soup.title.get_text()
print(title.encode('latin1').decode('utf-8'))