tillwenke commited on
Commit
e4764b8
·
verified ·
1 Parent(s): 8730ac1

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Run this on startup
2
+ import pandas as pd
3
+ import streamlit as st
4
+
5
+ st.title("Hitchhiking map of the world")
6
+
7
+ if "initialized" not in st.session_state:
8
+ st.session_state.initialized = False
9
+
10
+ if not st.session_state.initialized:
11
+
12
+
13
+
14
+ st.session_state.initialized = True
15
+