Blog / app.py
ArthurFischel's picture
Create app.py
327a70d
raw history blame
No virus
263 Bytes
import streamlit as st
def read_readme():
with open("README.md", "r") as f:
readme_content = f.read()
return readme_content
def main():
readme_content = read_readme()
st.markdown(readme_content)
if __name__ == "__main__":
main()