Spaces:
Sleeping
Sleeping
File size: 569 Bytes
7c42f91 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import streamlit as st
import pandas as pd
def main():
st.title("آپلود و نمایش فایل اکسل")
# آپلود فایل
uploaded_file = st.file_uploader("لطفاً فایل اکسل خود را آپلود کنید", type=["xlsx", "xls"])
if uploaded_file is not None:
# خواندن دیتا از فایل اکسل
df = pd.read_excel(uploaded_file)
# نمایش دیتافریم
st.write("دیتا فریم مربوط به فایل اکسل:")
st.write(df)
if __name__ == "__main__":
main()
|