From 447fb188e6f2e1bf8b65a79fc8c564476ccd2a2c Mon Sep 17 00:00:00 2001 From: Patrick McCann Date: Tue, 1 Oct 2024 11:50:44 -0400 Subject: [PATCH] Update streamlit_app.py --- streamlit_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamlit_app.py b/streamlit_app.py index c0c872c..39a55a0 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -143,7 +143,7 @@ def display_module_stats(module_stats): # Streamlit app st.title('Version Popularity Chart (Grouped by Buckets)') -uploaded_file = st.file_uploader('Upload a JSON file', type='json') +uploaded_file = st.file_uploader('Upload a JSON file eg https://github.com/prebid/prebid-integration-monitor/blob/main/output/10k.json', type='json') if uploaded_file is not None: data = load_json(uploaded_file)