2010-02-01 33 views
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?

+0

「這個人」現在已經在第三次更新中給出了他對原始問題的回答中明顯的(?)答案。我建議你刪除這個問題。 – 2010-02-02 02:15:41

回答

1

通過改變模塊的源代碼,從這個報價的聲音(從答案取你鏈接):

更新一些實驗,包括插入打印聲明以示與中有多少百分比

(由我添加的重點。)

0123檢測到什麼腳本塊