npb_data_app / app.py
patrickramos's picture
Add files
a8b6a3f
raw
history blame
207 Bytes
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()