Spaces:
Runtime error
Runtime error
| import obtenCampo | |
| def dni(textos_extraidos): | |
| textos_extraidos_simplificados = [texto.lower().replace(" ", "") for texto in textos_extraidos] | |
| #Campos Buscados | |
| nombre, apellido = obtenCampo.Nombre(textos_extraidos, textos_extraidos_simplificados) | |
| identificacion = obtenCampo.Identificacion(textos_extraidos, textos_extraidos_simplificados) | |
| return nombre, apellido, identificacion |