wp231957 发表于 2021-6-15 19:47:38

备战:金山在线

主要学习了一下md5库的用法:

import requests
from hashlib import md5

key="6key_cibaifanyicjbysdlove1"
q=input("请输入你要输入的单词::")
key+=q
s_md5 = md5()
s_md5.update(key.encode(encoding='utf-8'))
sign=s_md5.hexdigest()[:16]
params={
    'c': 'trans',
    'm': 'fy',
    'client': '6',
    'auth_user': 'key_ciba',
    'sign': sign
}
data={
    'from': "auto",
    'to': 'auto',
    'q': q
}
url="https://ifanyi.iciba.com/index.php?"
headers={
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36'
}
req=requests.post(url=url,headers=headers,params=params,data=data)
print(q,"::",req.json()["content"]["out"])

'''
PS E:\wp> py ciba.py
    请输入你要输入的单词::you
    you :: 您
PS E:\wp> py ciba.py
    请输入你要输入的单词::cat
    cat :: 猫咪类
PS E:\wp> py ciba.py
    请输入你要输入的单词::this is a test text
    this is a test text :: 这是一个测试文本
PS E:\wp> py ciba.py
    请输入你要输入的单词::我们伟大的祖国
    我们伟大的祖国 :: Our great motherland is the
PS E:\wp>

'''

tigerPython2019 发表于 2021-6-17 14:59:18

{:10_254:}
页: [1]
查看完整版本: 备战:金山在线