How would I capture the proper encoding from a Japanese synopsis from Google Play? Here is what I have so far:
import requests
from lxml import html
res=requests.get('https://play.google.com/store/tv/show?id=bgJpf84fT4Q')
node=html.fromstring(res.content)
print node.xpath('//div[@itemprop="description"]')[0].text
æ¥æ¬ã®ã©ããã«åå¨ããå¶æªãªç¯ç½ªãå¤çºããç¡æ³å°å¸¯ãéç§°ãæ··æ²è¡ï¼ã«ã¼ãªã¹ã¿ã¦ã³ï¼ããè¦å¯ããè¦æ¾ãããã®è¡ã«ãç¯ç½ªèããæããããç¾èã®å¥³æ®ºãå±ãã¡ãåå¨ãã...ãã®åããã¢ã·ãã¬ãï¼ã¢ãã«ã¬ã¼ã«ãºï¼ãããã£ãã¬ã¼ã»ã¢ã·ãã¬ãããã¯ã表åãã¯ç¾èã®è¸ãåãã¡ãéãéå ´ã ããè£ã®é¡ã¯æªã¸ã®å¾©è®ãæãèãã¢ã·ãã¬ã«æ®ºããä¾é ¼ããå ´æãå¼·ãçµæåãããããã§ããªããã°ãä¾é ¼äººã«ææç§»å¥ããããã§ããªããéããç©ã¾ããã°ã©ããªç¸æã§ããèªæ¢ã®ç¾èã§ã¯ã¼ã«ï¼ã»ã¯ã·ã¼ã«ãããã¦å¿ãä»çããã®ã ...ããã£ãã¬ã¼ã®çµå¶èã»ã¿ã³ã½ã¯ãã娼婦ã»ãã³ã½ã¯ãã¯ããã¨ããåæ§çãªãã£ã©ã¯ã¿ã¼ã¨ã¨ãã«ã仿¥ãã
How can I set utf-8 encoding on the text property?
requests, why not useBeautifulSoup?