维基百科
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了维基百科相关的知识,希望对你有一定的参考价值。
def checkWiki(word): if word != '': url = 'http://ja.wikipedia.org/wiki/'+urllib.quote(word.encode('utf-8')) #gethtml=unicode(urlfetch.fetch(url).content,'cp932') getHtml=urlfetch.fetch(url).content html_analyzed = BeautifulSoup(getHtml) for node in html_analyzed.findAll('div', {'class': 'plainlinks'}): #print >>sys.stderr,'node=%s'%node('b')[0](text = True)[0] if node('b')[0](text = True)[0].find(u'ã‚ã‚Šã¾ã›ã‚“')==-1: print >>sys.stderr,'yes' return 1 else: print >>sys.stderr,'ng' return 0 return 1 else:return 0
以上是关于维基百科的主要内容,如果未能解决你的问题,请参考以下文章