Spaces:
Running
Running
File size: 677 Bytes
851f5e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
'''
toExecute: (from root app folder) ... streamlit run entry_streamlit.py
'''
import streamlit as st
#import uix.lit_sidebar as litSideBar
#--- streamlit: specify title and logo
st.set_page_config(
page_title='Protoype - Fastapi with Streamlit Landing Page',
#page_icon='https://cdn.freebiesupply.com/logos/thumbs/1x/nvidia-logo.png',
layout="wide")
st.header('\
Protoyping Fastapi and Streamlit \
on Docker \
within Huggingface space \
')
#st.markdown("##### Iain McKone (Deployment Lead) [LinkedIn](%s)" % "https://linkedin.com/in/iainmckone")
st.markdown('---')
#--- streamlit: add a sidebar
#litSideBar.init()
|