0
我想使用這個包:http://pypi.python.org/pypi/guess-language/0.1 我已經閱讀了文檔/維基,但找不到解決方案。如何使用這個Python包? (guess_language)
基本上,這個包允許你傳遞一個字符串,它會返回一個「語言」。 我可以打印出「en」。
htmlSource = download('http://feeds.feedburner.com/nchild')
soup = BeautifulStoneSoup(htmlSource)
justwords = ''.join(soup.findAll(text=True))
justwords = justwords.encode('utf-8')
true_lang = guess_language.guessLanguage(justwords)
我想知道...這個人怎麼打印出猜測的分數/準確性?
Am I passing the string correctly to the python library?
「這個人」現在已經在第三次更新中給出了他對原始問題的回答中明顯的(?)答案。我建議你刪除這個問題。 – 2010-02-02 02:15:41