philschmid HF staff commited on
Commit
3f3337a
1 Parent(s): 3ac8695
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ # To make things easier later, we're also importing numpy and pandas for
3
+ # working with sample data.
4
+ import numpy as np
5
+ import pandas as pd
6
+
7
+ st.title('My first app')