mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-19 12:04:47 +08:00
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
from urllib.parse import quote
|
||
import base64
|
||
import urllib
|
||
import requests
|
||
|
||
API_KEY = ""
|
||
SECRET_KEY = ""
|
||
|
||
|
||
def get_file_content_as_base64(path, urlencoded=False):
|
||
"""
|
||
获取文件base64编码
|
||
:param path: 文件路径
|
||
:param urlencoded: 是否对结果进行urlencoded
|
||
:return: base64编码信息
|
||
"""
|
||
with open(path, "rb") as f:
|
||
content = base64.b64encode(f.read()).decode("utf8")
|
||
if urlencoded:
|
||
content = urllib.parse.quote_plus(content)
|
||
return content
|
||
|
||
|
||
def get_access_token():
|
||
"""
|
||
使用 AK,SK 生成鉴权签名(Access Token)
|
||
:return: access_token,或是None(如果错误)
|
||
"""
|
||
url = "https://aip.baidubce.com/oauth/2.0/token"
|
||
params = {"grant_type": "client_credentials", "client_id": API_KEY, "client_secret": SECRET_KEY}
|
||
return str(requests.post(url, params=params).json().get("access_token"))
|
||
|
||
|
||
def run():
|
||
image_to_base64_res = get_file_content_as_base64('./img/1-test.png')
|
||
image_to_base64_res = quote(image_to_base64_res, 'utf-8')
|
||
url = "https://aip.baidubce.com/rest/2.0/ocr/v1/handwriting?access_token=" + get_access_token()
|
||
payload = f'image={image_to_base64_res}'
|
||
headers = {
|
||
'Content-Type': 'application/x-www-form-urlencoded',
|
||
'Accept': 'application/json'
|
||
}
|
||
response = requests.request("POST", url, headers=headers, data=payload)
|
||
print(response.json())
|
||
return response.json()
|
||
|
||
|
||
if __name__ == '__main__':
|
||
run()
|