File size: 358 Bytes
83a296f bcf566a 83a296f 0a36955 83a296f 571777f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
import requests as r
def askPrice(test):
res = r.request('https://orapiweb1.pttor.com/api/oilprice/LatestOilPrice')
return res.json()
#with gr.Blocks() as myApp:
# with gr.Row():
# with gr.Column(scale=1):
# with gr.Column(scale=1):
app = gr.Interface(fn=askPrice,inputs='text', outputs='json')
|