Py.Cafe

coriturner/

streamlit-on-pycafe-0

Streamlit on Py.cafe

DocsPricing
  • Sample.xlsx
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
import streamlit as st
import pandas as pd

st.set_page_config(page_title='TPP Sales')
st.header('TPP Sales')

### --- load dataframe

excel_file = 'Sample.xlsx'
sheet_name = 'sheet_1'

df = pd.read_excel(excel_file,sheet_name=sheet_name)