我如何使用这个Python包? (guess_language)

时间:2010-02-01 23:32:57

标签: python packages wiki

我正在尝试使用此程序包:http://pypi.python.org/pypi/guess-language/0.1 我已经阅读了文档/ wiki,但找不到解决方案。

基本上,这个包允许你传入一个字符串,它将返回一个“语言”。 我能够打印出“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?

1 个答案:

答案 0 :(得分:1)

通过修改模块的源代码,从此引用的声音中提取(取自您链接的答案):

  

经过一些实验后更新,包括插入一个print语句来显示检测到哪些脚本块的百分比

(我强调的重点。)