Hi, I am trying to use this package: http://pypi.python.org/pypi/guess-language/0.1 I've read the documentation/wiki, but can't find the solution.
Basically, this package allows you to pass in a string, and it will return a "language". I'm able to make it print out "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)
I'd like to know...how does this person print out the scores/accuracy of the guess?