Python查询BabelFish
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python查询BabelFish相关的知识,希望对你有一定的参考价值。
import string, urllib def clean(text): return ' '.join(string.replace(text.strip(), " ", ' ').split()) def translate(frase, da, a): frase = clean(frase) params = urllib.urlencode({'BabelFishFrontPage':'yes','doit':'done','urltext':frase,'lp':da+'_'+a}) response = urllib.urlopen('http://babelfish.altavista.com/tr', params) import time print params time.sleep(1) f = open("prova.html","w") html = response.read() f.write(html) f.close() print html
以上是关于Python查询BabelFish的主要内容,如果未能解决你的问题,请参考以下文章