Spaces:
Running
Running
Commit
·
cf70e4a
1
Parent(s):
c743533
add requiretment
Browse files
app.py
CHANGED
@@ -1,11 +1,16 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
3 |
def greet(name):
|
4 |
-
|
5 |
-
|
6 |
|
|
|
|
|
|
|
7 |
|
8 |
-
return "=======have you saved " +
|
9 |
|
10 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
11 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
import subprocess
|
4 |
+
|
5 |
def greet(name):
|
6 |
+
# with open('./haha.txt', 'w') as f:
|
7 |
+
# f.write(name)
|
8 |
|
9 |
+
completed_process = subprocess.run(['ls', '-l'], capture_output=True, text=True)
|
10 |
+
# print(completed_process.stdout)
|
11 |
+
|
12 |
|
13 |
+
return "=======have you saved " + completed_process.stdout + "?"
|
14 |
|
15 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
16 |
iface.launch()
|