马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
主要学习了一下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>
'''
|