百度云上传身份证获取身份信息封装

news/2025/1/14 22:11:34/

1.目录结构

                -script_discerm ------------包

                -discerm.py --------------主要逻辑

                -__init__.py 

                -id_care---------------文件夹  存放图片

2.安装模块

pip install urllib3==1.23
pip install requests
pip install base64

3.各文件内容

        2.1    discerm.py

import jsonimport requests
import base64
from urllib import parse
import os
#API_KEY  SECRET_KEY    是百度云创建应用生成的  -https://console.bce.baidu.com/ai/#/ai/ocr/app/list
API_KEY = "EN3NxxxxxxxIZHueIC"
SECRET_KEY = "kexxxxxxxxxxxxUUotfzB91z"def script_discerns(path):   #path   是文件对象url = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard?access_token=" + get_access_token()#id_card_side=front    front是身份证的正面   back是反面payload = 'id_card_side=front&image='+str(get_file_content_as_base64(path, True))headers = {'Content-Type': 'application/x-www-form-urlencoded','Accept': 'application/json'}# print(payload)response = requests.request("POST", url, headers=headers, data=payload)# print(response.text)discern_dict = response.textdiscern_dict = json.loads(discern_dict)return discern_dict    #返回的是jsondef get_file_content_as_base64(path, urlencoded=False):"""获取文件base64编码:param path: 文件路径:param urlencoded: 是否对结果进行urlencoded:return: base64编码信息"""                        #身份证图片存放的路径save_path = os.path.join('youzhu_api/libs/script_discern/id_care',str(path))# print(save_path)f = open(save_path, 'wb+')for chunk in path.chunks():f.write(chunk)f.close()f2 = open(save_path, "rb")content = base64.b64encode(f2.read()).decode("utf8")if urlencoded:content = parse.quote_plus(content)f2.close()return contentdef 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"))

        2.2__init__.py

from .discern import *

4.调用方式

4.1如果要用我的这一套 注意:

        1,要配置 API_KEY ,SECRET_KEY

        2.def script_discerns(path)  path要传入的是图片对象
        3,save_path    图片的地址要正确,才能再打开读取图片

4.2调用

        

 from libs.script_discern import script_discernsfile = request.FILES.get('file')    #获取文件对象
discern_dict = script_discerns(file)   #调用函数,返回值是jsonwords = discern_dict['words_result']['公民身份号码']['words']addr = discern_dict['words_result']['住址']['words']


http://www.ppmy.cn/news/1001813.html

相关文章

sqoop

一、bg 可以在关系型数据库和hdfs、hive、hbase之间导数 导入:从RDBMS到hdfs、hive、hbase 导出:相反 sqoop1 和sqoop2 (1.99.x)不兼容,sqoop2 并没有生产的稳定版本, Sqoop1 import原理(导入) 从传统数据库获取元数据信息&…

伺服电机的三种控制方式与三闭环控制

(项目)FPGA双电机主从快速稳定控制实现 第一章 伺服电机的三种控制方式与三闭环控制 伺服电机的三种控制方式与三闭环控制 (项目)FPGA双电机主从快速稳定控制实现前言一、电机控制方式二、电机三个闭环负反馈PID控制系统三、三闭…

射影平面 与 射影变换

射影平面 与 射影变换 射影平面 与 齐次坐标 中心为O 的把 将与一个点O 关联的所有平面和直线构成的集合称为 中心为O的把O[\lambda, p]射影(从平面\pi 到把O的一个对应关系)O[P, l] [OP, OL] ...截影(从把O 到平面\pi 的一个对应关系&…

数据可视化(七)常用图表的绘制

1. #seaborn绘制常用图表 #折线图 #replot(x,y,kind,data) #lineplot(x,y,data) #直方图 #displot(data,rug) #条形图 #barplot&…

计算机网络(4) --- 协议定制

计算机网络(3) --- 网络套接字TCP_哈里沃克的博客-CSDN博客https://blog.csdn.net/m0_63488627/article/details/132035757?spm1001.2014.3001.5501 目录 1. 协议的基础知识 TCP协议通讯流程 ​编辑 2.协议 1.介绍 2.手写协议 1.内容 2.接口 …

程序员有必要参加软考吗?

作为程序员,如果一直从事着前线的编程工作,是否会对身体造成负担,难以持续到35岁呢?毕竟在项目赶期时,工作强度很高,而技术也在不断变化,因此很多程序员在30岁前就开始转型。我曾见过很多焦虑自…

记录uniapp组件报警告Maximum recursive updates exceeded in component <View>

今天写了一个瀑布流报错如下 Maximum recursive updates exceeded in component . This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, u…

QT与VS环境 代码文件编码格式使用utf-8与带bom的utf-8的差异

使用QT进行开发的时候,有时候通常会遇到使用中文的时候,就算格式为utf-8,也会出现编译错误的问题,一般无从下手,这几天看到同事有专门研究这个问题,于是也决心花一点时间这地搞懂utf-8的编码。其中分为utf-8与utf-8 bo…