rapicash / funciones.py
Moibe's picture
Se integra maquetado de pasaportes
d35e97b
raw
history blame
628 Bytes
import herramientas
import documentos
import time
async def procesa_dni(image):
textos_extraidos = await herramientas.procesaImagen(image)
#Campos DNI Panamá.
nombre, apellido, identificacion = await documentos.dni(textos_extraidos)
return {
"nombre": nombre,
"apellido": apellido,
"identificacion": identificacion
}
async def procesa_pasaporte(image):
textos_extraidos = await herramientas.procesaImagen(image)
#Campos DNI Panamá.
nombre, apellido, identificacion = await documentos.pasaporte(textos_extraidos)
return {
"nombre": nombre,
"apellido": apellido,
"identificacion": identificacion
}