testnow720 commited on
Commit
356c16b
·
verified ·
1 Parent(s): dbb730f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -17,6 +17,7 @@ def execute_snippet(code_snippet: str = DEF_SNIPPET, lang: str = DEF_LANG) -> st
17
  res = requests.request("POST", f"https://try.w3schools.com/try_{lang_param}.php", data={
18
  "code": code_snippet
19
  })
 
20
  return BeautifulSoup(res.text, "html.parser").find_all("pre")[0].string
21
 
22
  demo = gr.Interface(
 
17
  res = requests.request("POST", f"https://try.w3schools.com/try_{lang_param}.php", data={
18
  "code": code_snippet
19
  })
20
+ print(BeautifulSoup(res.text, "html.parser").find_all("pre"))
21
  return BeautifulSoup(res.text, "html.parser").find_all("pre")[0].string
22
 
23
  demo = gr.Interface(