File size: 430 Bytes
bcd771c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
from os.path import join, dirname
from dotenv import load_dotenv
import streamlit as st

dotenv_path = join(dirname(__file__), '.env')
load_dotenv(dotenv_path)

st.markdown("## Home")

st.write(f"ST version: {st.__version__}")

st.write(f"KAGGLE_USERNAME: {os.environ.get('KAGGLE_USERNAME')}")

st.markdown("Go to: /tensorboard")
st.markdown("Go to: /healthz")
st.markdown("Go to: /stream")
st.markdown("Go to: /static")