paopaoka3325 commited on
Commit
cf70e4a
·
1 Parent(s): c743533

add requiretment

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -1,11 +1,16 @@
1
  import gradio as gr
2
 
 
 
3
  def greet(name):
4
- with open('./haha.txt', 'w') as f:
5
- f.write(name)
6
 
 
 
 
7
 
8
- return "=======have you saved " + name + "?"
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()