DaveM2430 commited on
Commit
4835376
·
verified ·
1 Parent(s): 5f68fa6

Update streamlit_app.py

Browse files
Files changed (1) hide show
  1. streamlit_app.py +5 -0
streamlit_app.py CHANGED
@@ -15,6 +15,11 @@ def download_private_file(repo_id, filename, token, dest=None):
15
  f.write(resp.content)
16
  return dest
17
 
 
18
  download_private_file(repo, "mac_app.py", token, dest="/tmp/mac_app.py")
19
 
 
 
 
 
20
  exec(open("/tmp/mac_app.py").read())
 
15
  f.write(resp.content)
16
  return dest
17
 
18
+ # Download app code
19
  download_private_file(repo, "mac_app.py", token, dest="/tmp/mac_app.py")
20
 
21
+ # Download parquet data
22
+ download_private_file(repo, "AllCollege_RE288.parquet", token,
23
+ dest="/tmp/AllCollege_RE288.parquet")
24
+
25
  exec(open("/tmp/mac_app.py").read())