Spaces:
Running
Running
import gradio as gr | |
from data import data_df | |
from pitcher_overview import create_pitcher_overview | |
with gr.Blocks() as demo: | |
create_pitcher_overview(data_df) | |
if __name__ == '__main__': | |
demo.launch() | |