File size: 1,117 Bytes
9259f41
3e3d36c
7cafc77
9259f41
b5549b2
 
 
 
ca95771
b5549b2
 
7cafc77
 
b5549b2
 
3e3d36c
7cafc77
9259f41
 
 
 
 
 
 
4af178e
c56669d
1c39c1b
9259f41
 
 
 
65f10be
7c0f0b5
c56669d
9259f41
1c39c1b
 
 
9259f41
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import gradio as gr
import requests
from bs4 import BeautifulSoup

def execute(code_snippet, lang):
    lang_param = None
    
    match lang:
        case "C++": lang_param = "cpp"
        case "C#": lang_param = "cs"
        case _: lang_param = lang.lower()

    # FIXME: ERROR HANDLING
    res = requests.request("POST", f"https://try.w3schools.com/try_{lang_param}.php", data={
        "code": code_snippet
    })
    return BeautifulSoup(res.text, "html.parser").find_all("pre")[0].string

demo = gr.Interface(
    fn=execute,
    inputs=[
        gr.Textbox(
            show_label=True,
            label="Code",
            max_lines=4_294_967_295,
            lines=4_294_967_295,
            value="print('Hello, World!')",
        ),
        gr.Dropdown(
            show_label=True,
            label="Language",
            choices=["Python", "Java", "C", "C++", "C#", "PHP"],
            value="Python"
        ),
    ],
    outputs=gr.Textbox(label="Result"),
    title="HFChat Code Executor",
    description="Enter the code snippet and language that you want to execute.",
)

demo.launch(debug=True)