Spaces:
Sleeping
Sleeping
Moibe
commited on
Commit
•
dab7f2f
1
Parent(s):
f9e5067
Test all args
Browse files
adios.py
ADDED
File without changes
|
app.py
CHANGED
@@ -3,6 +3,7 @@ from PIL import Image
|
|
3 |
import time
|
4 |
import os
|
5 |
|
|
|
6 |
def greet(input1, input2):
|
7 |
print("Imprimiendo en Consola")
|
8 |
print("Ésto es input1: ", input1)
|
|
|
3 |
import time
|
4 |
import os
|
5 |
|
6 |
+
#Greet es una función de ejemplo para usar.
|
7 |
def greet(input1, input2):
|
8 |
print("Imprimiendo en Consola")
|
9 |
print("Ésto es input1: ", input1)
|
hola.py
CHANGED
@@ -9,4 +9,8 @@ args = parser.parse_args()
|
|
9 |
print("Esto es args: ", args)
|
10 |
|
11 |
print("Hola desde Hola.py")
|
12 |
-
print("El target path recibido es: ", args.target_path)
|
|
|
|
|
|
|
|
|
|
9 |
print("Esto es args: ", args)
|
10 |
|
11 |
print("Hola desde Hola.py")
|
12 |
+
print("El target path recibido es: ", args.target_path)
|
13 |
+
print("El target recibido es: ", args.target)
|
14 |
+
print("El target image recibido es: ", args.target_image)
|
15 |
+
|
16 |
+
#nueva_var = args.target_path
|