美文网首页
单词统计查询(3.translate.py)

单词统计查询(3.translate.py)

作者: e26f55e7ec23 | 来源:发表于2018-10-21 22:44 被阅读0次
mport requests
import time

from models_exp import NewWord


class Translate:

    def __init__(self):
        # self.util = Utils()
        pass

    # translation api, tranlate a english word to chinese
    # return translation result
    # 百度翻译接口
    def _trans(self, word):
        # res = self.trans.translate('hello', dest='zh-CN')
        url = 'http://fanyi.baidu.com/sug'
        dct = {'kw': word}
        req = requests.post(url, dct)
        req.raise_for_status()
        res = req.json().get('data')
        if not res:
            return None
        return res[0].get('v', None)

    # iciba api / 金山词典 api
    # baidu api dont contain Phonogram , so change an api
    def _trans_ici(self, word):

        url = 'http://www.iciba.com/index.php?a=getWordMean&c=search&word=' + word
        try:
            req = requests.get(url)
            req.raise_for_status()
            info = req.json()
            data = info['baesInfo']['symbols'][0]
            assert info['baesInfo']['symbols'][0]
            # 去除没有音标的单词
            assert data['ph_am'] and data['ph_en']
            # 去除没有词性的单词
            assert data['parts'][0]['part']

        except:
            return ('none','none')

        ph_en = '英 [' + data['ph_en'] + ']'
        ph_am = '美 [' + data['ph_am'] + ']'
        ex = ''
        for part in data['parts']:
            ex += part['part'] + ';'.join(part['means']) + ';'

        return ph_en+ph_am, ex

    # 扇贝单词 api
    def _trans_shanbay(self, word):
        url = 'https://api.shanbay.com/bdc/search/?word=' + word
        req = requests.get(url)
        print(req.json())


    # 使用 金山单词 翻译接口
    # 百度接口没有音标
    # 扇贝接口包含的信息不如其他两家
    def trans(self):

        query = NewWord.select().where(NewWord.explanation != '')
        if not query:
            return
        for word in query:

            res = self._trans_ici(word.name)
            # print(res)
            if res:
                word.phonogram = res[0]
                # word.
                word.explanation = res[1]

            else:
                word.is_valid = False
            word.save()
            time.sleep(1)


if __name__ == '__main__':

    t = Translate()
    # res = t._trans_shanbay('hello')
    # print(res)
    # t.trans()
    res = t._trans_ici('hello')
    print(res[1])

    #写代码遍历修改数据库
    for i in NewWord.select():
        print(i.name,end=' ')
        exp = str(t._trans_ici(i.name)[1])
        i.explanation =  exp
        #print(i.explanation)
        i.save()

相关文章

  • 单词统计查询(3.translate.py)

  • 单词统计查询(1.总配置)

    ⊙无奈o(╯□╰)o 总是考不过四级,所以写这个小程序来分析统计一下四级历年真题中单词的情况⊙ 源码在最下面 1....

  • 大数据(6):Hive

    在上一篇《大数据(5):MapReduce 编程》中使用 MapReduce 进行了单词统计和年度最高气温查询,这...

  • grep

    查询信息 查询信息,统计

  • Presto统计信息

    表统计 Presto支持基于统计的查询优化。为了使查询能够利用这些优化,Presto必须具有该查询中表的统计信息。...

  • 单词统计

    有一个文本文件,被分成了4份,分别放到了4台服务器中存储 Text1:the weather is goodTex...

  • SQL查询语句1

    复杂查询 = 简单查询 + 限定查询 + 查询排序 + 多表查询 + 分组统计查询 + 子查询。 面对所有的复杂查...

  • Nginx笔记

    nignx日志统计 1.根据访问IP统计UV 2.统计访问URL统计PV 3.查询访问最频繁的URL 4.查询访问...

  • SQL Server 统计信息

    统计信息是如何提高SQL Server查询性能的?统计直方图用作在查询执行计划中查询优化器的选择依据。如果一个查询...

  • ThinkPHP查询

    查询方式 表达式查询 快捷查询 区间查询 组合查询 统计查询 动态查询 SQL查询 ThikPHP支持原生SQL查...

网友评论

      本文标题:单词统计查询(3.translate.py)

      本文链接:https://www.haomeiwen.com/subject/itgizftx.html