Spaces:
Sleeping
Sleeping
import streamlit as st | |
import os | |
try: | |
with open("README.md", "r", encoding="utf-8") as f: | |
readme_content = f.read() | |
st.markdown(readme_content, unsafe_allow_html=True) | |
except FileNotFoundError: | |
st.error("README.mdγθ¦γ€γγγΎγγγ§γγγ") | |