testnow720 commited on
Commit
3e3d36c
·
verified ·
1 Parent(s): 1c39c1b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -1,11 +1,11 @@
1
  import gradio as gr
 
2
 
3
- def execute(code, lang):
4
- match str(lang):
5
- case "Python":
6
- return "Python"
7
- case _:
8
- return f"Code : {str(code)}\nTypeof lang : {str(type(lang))}\nLanguage : {str(lang)}"
9
 
10
  demo = gr.Interface(
11
  fn=execute,
 
1
  import gradio as gr
2
+ import requests
3
 
4
+ def execute(codeSnippet, lang):
5
+ res = requests.request("POST", f"https://try.w3schools.com/try_{lang.lower()}.php", data={
6
+ code=codeSnipper
7
+ })
8
+ return res.text
 
9
 
10
  demo = gr.Interface(
11
  fn=execute,