python - Is there a limit on TextBlob translation? -


i have been using textblob, package python (https://pypi.python.org/pypi/textblob) translating articles different language .

after reading docs, got know textblob makes use of google translate. since google translate not free service, wanted know whether there usage limit on translating articles using textblob services?

google states on pricing page google translate api need set billing in order able utilize translate api. in other words, there isn't free usage tier.

important: google translate api v2 requires billing information accounts before can start using service.

this text available on https://cloud.google.com/translate/v2/pricing.

so, shouldn't able use translate api @ unless have account set up.

the google documentation lists https://www.googleapis.com/language/translate/v2 api endpoint. having around source code textblob, couldn't find endpoint mentioned anywhere. instead, textblob seems using http://translate.google.com/translate_a/t, , url isn't mentioned anywhere in google's api documentation. seems textblob isn't using google translate api @ all. instead, forging headers , claiming browser.

this module textblob adapted translation feature from, states no key, no authentication whatsoever in description.

so guess there isn't usage limit on translating articles using textblob, since not using api.


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -