kedimestan commited on
Commit
7863770
·
verified ·
1 Parent(s): 49beea7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -4
app.py CHANGED
@@ -58,7 +58,19 @@ def fetch_all_user_data():
58
  return all_data
59
 
60
 
61
- if __name__ == "__main__":
62
- # Fetch all data for all users and save after each one
63
- fetch_all_user_data()
64
- print("Data fetching complete. All data saved to 'all_users_data.json'.")
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  return all_data
59
 
60
 
61
+ import gradio as gr
62
+
63
+ def fetch_file():
64
+ return "all_users_data.json"
65
+
66
+ # Gradio Interface
67
+ interface = gr.Interface(
68
+ fn=fetch_file,
69
+ inputs=[],
70
+ outputs=gr.File(label="Download Fetched Data")
71
+ )
72
+
73
+ interface.launch()
74
+
75
+ fetch_all_user_data()
76
+ print("Data fetching complete. All data saved to 'all_users_data.json'.")