Spaces:
Runtime error
Runtime error
Test output text
Browse files- funciones.py +12 -0
funciones.py
CHANGED
@@ -93,7 +93,19 @@ def mass(input1, input2):
|
|
93 |
print(output)
|
94 |
print("Y el tipo del output es: ", type(output))
|
95 |
time.sleep(1)
|
|
|
96 |
print("Terminó la impresión del output...")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
|
98 |
print("Éste es el momento en el que se creo result, revisar...")
|
99 |
time.sleep(1)
|
|
|
93 |
print(output)
|
94 |
print("Y el tipo del output es: ", type(output))
|
95 |
time.sleep(1)
|
96 |
+
|
97 |
print("Terminó la impresión del output...")
|
98 |
+
|
99 |
+
if "No face in source path detected" in output:
|
100 |
+
#Hacer algo si se encuentra el texto
|
101 |
+
print("No se detectó ninguna cara en la ruta de origen.")
|
102 |
+
time.sleep(8)
|
103 |
+
|
104 |
+
else:
|
105 |
+
print("Si se detecto un rostro...")
|
106 |
+
time.sleep(8)
|
107 |
+
|
108 |
+
|
109 |
|
110 |
print("Éste es el momento en el que se creo result, revisar...")
|
111 |
time.sleep(1)
|