Moibe commited on
Commit
af881b4
1 Parent(s): 767439d

Gone all time.sleeps

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -18,7 +18,6 @@ def save_images_as_zip(path_foto, filename, plataforma):
18
  # path_foto_zippable = str(path_foto) + "/" + foto
19
  path_foto_zippable = str(path_foto) + (os.sep if plataforma == "local" else "/") + foto
20
  print("La ruta textual final de esa foto en particular es: ", path_foto_zippable)
21
- time.sleep(1)
22
  # ruta = pathlib.Path(path_foto_zippable)
23
  # zip_file.write(ruta)
24
  ruta = os.path.basename(path_foto_zippable)
@@ -50,7 +49,7 @@ def greet(input1, input2):
50
  print("La plataforma en la que basaremos la división es HuggingFace.")
51
  path_parts = path_video.split("/")
52
  print("Esto es parth_paths, de aquí lo puedes obtener?: ", path_parts)
53
- time.sleep(10)
54
 
55
 
56
  print("Imprimiendo path_parts: ", path_parts)
@@ -122,12 +121,12 @@ def greet(input1, input2):
122
  output = proc.read()
123
 
124
  print("Output (resultado de la ejecución del código):")
125
- time.sleep(2)
126
  print(output)
127
  print("Terminó la impresión del output...")
128
 
129
  print("Éste es el momento en el que se creo result, revisar...")
130
- time.sleep(10)
131
 
132
  print("Ahora estamos imprimiendo las rutas para ver si apareció una nueva:")
133
  files = os.listdir(path_general)
@@ -140,7 +139,7 @@ def greet(input1, input2):
140
  #nom_video = "whitebeauty"
141
  path_foto = pathlib.Path(path_particular + "/temp/" + nom_video + "/")
142
  print("Éste es el path foto: ", path_foto)
143
- path_result = str(path_foto) + "temp.mp4"
144
  print("Y éste es el path del resultado: ", path_result)
145
 
146
 
 
18
  # path_foto_zippable = str(path_foto) + "/" + foto
19
  path_foto_zippable = str(path_foto) + (os.sep if plataforma == "local" else "/") + foto
20
  print("La ruta textual final de esa foto en particular es: ", path_foto_zippable)
 
21
  # ruta = pathlib.Path(path_foto_zippable)
22
  # zip_file.write(ruta)
23
  ruta = os.path.basename(path_foto_zippable)
 
49
  print("La plataforma en la que basaremos la división es HuggingFace.")
50
  path_parts = path_video.split("/")
51
  print("Esto es parth_paths, de aquí lo puedes obtener?: ", path_parts)
52
+ time.sleep(1)
53
 
54
 
55
  print("Imprimiendo path_parts: ", path_parts)
 
121
  output = proc.read()
122
 
123
  print("Output (resultado de la ejecución del código):")
124
+ time.sleep(1)
125
  print(output)
126
  print("Terminó la impresión del output...")
127
 
128
  print("Éste es el momento en el que se creo result, revisar...")
129
+ time.sleep(1)
130
 
131
  print("Ahora estamos imprimiendo las rutas para ver si apareció una nueva:")
132
  files = os.listdir(path_general)
 
139
  #nom_video = "whitebeauty"
140
  path_foto = pathlib.Path(path_particular + "/temp/" + nom_video + "/")
141
  print("Éste es el path foto: ", path_foto)
142
+ path_result = str(path_foto) + "/temp.mp4"
143
  print("Y éste es el path del resultado: ", path_result)
144
 
145