ArthurFischel commited on
Commit
327a70d
1 Parent(s): a83d4d2

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ def read_readme():
5
+ with open("README.md", "r") as f:
6
+ readme_content = f.read()
7
+ return readme_content
8
+
9
+
10
+ def main():
11
+ readme_content = read_readme()
12
+ st.markdown(readme_content)
13
+
14
+
15
+ if __name__ == "__main__":
16
+ main()