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 | |
} |