Spaces:
Build error
Build error
Romeo David commited on
Commit ·
5316b36
1
Parent(s): 986aee4
display something on the test page
Browse files- pages/output.py +9 -0
pages/output.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import streamlit as st
|
| 3 |
+
|
| 4 |
+
import time
|
| 5 |
+
|
| 6 |
+
def display_outputs():
|
| 7 |
+
st.write(time.now())
|
| 8 |
+
|
| 9 |
+
display_outputs()
|