Spaces:
Sleeping
Sleeping
Commit
·
98da4cb
1
Parent(s):
61e4f0c
add requiretment
Browse files
app.py
CHANGED
@@ -8,6 +8,8 @@ def greet(name1, name2, name3, name4):
|
|
8 |
str3 = name3
|
9 |
str4 = name4
|
10 |
|
|
|
|
|
11 |
|
12 |
def run_command(command):
|
13 |
result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
|
|
8 |
str3 = name3
|
9 |
str4 = name4
|
10 |
|
11 |
+
with open('abstractsave.txt', 'w') as f:
|
12 |
+
f.write(name4)
|
13 |
|
14 |
def run_command(command):
|
15 |
result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|