aliabd's picture
aliabd HF Staff
Upload folder using huggingface_hub
d9e9e34 verified
raw
history blame contribute delete
272 Bytes
import gradio as gr
from data import df
with gr.Blocks() as demo:
with gr.Row():
gr.Label(len(df), label="Flight Count")
gr.Label(f"${df['price'].min()}", label="Cheapest Flight")
gr.DataFrame(df)
if __name__ == "__main__":
demo.launch()