File size: 336 Bytes
01b7d84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import gradio as gr
import requests
import json




def get_rss(rss_json_url):
    r = requests.get(f'{rss_json_url}') 
    lod = json.loads(r.text)
    return lod

with gr.Blocks() as app:
    with gr.Row():
        inp = gr.Textbox()
        btn = gr.Button()
    out_json = gr.JSON()
    btn.click(get_rss,inp,out_json)
app.launch()