tx3bas commited on
Commit
1b0d028
1 Parent(s): 805eccb

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ def main():
4
+ st.title("Pycaros")
5
+ st.header("Bienvenidos a Pycaros")
6
+
7
+ if __name__ == "__main__":
8
+ main()