Spaces:
Runtime error
Runtime error
File size: 279 Bytes
e4764b8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
### Run this on startup
import pandas as pd
import streamlit as st
st.title("Hitchhiking map of the world")
if "initialized" not in st.session_state:
st.session_state.initialized = False
if not st.session_state.initialized:
st.session_state.initialized = True
|