-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstreamlit_app.py
64 lines (52 loc) · 2.26 KB
/
streamlit_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Import the necessary libraries
import streamlit as st
from streamlit_autorefresh import st_autorefresh
from datetime import datetime
# Setup web page
st.set_page_config(
page_title="Data Cloud Summit",
menu_items={
"Get Help": "https://developers.snowflake.com",
"About": "The source code for this application can be accessed on GitHub https://github.com/iamontheinet/data-cloud-summit-countdown",
},
)
count = st_autorefresh(interval=1000, limit=1000, key="datacloudsummitcounter")
def date_diff_in_seconds(dt2, dt1):
timedelta = dt2 - dt1
return timedelta.days * 24 * 3600 + timedelta.seconds
def dhms_from_seconds(seconds):
minutes, seconds = divmod(seconds, 60)
hours, minutes = divmod(minutes, 60)
days, hours = divmod(hours, 24)
return (days, hours, minutes, seconds)
data_cloud_summit_24_date = datetime.strptime('2025-06-02 08:00:00', '%Y-%m-%d %H:%M:%S')
to_day = datetime.now()
days, hours, minutes, seconds = dhms_from_seconds(date_diff_in_seconds(data_cloud_summit_24_date,to_day))
with open("app.css") as f:
st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
with st.container():
st.image("snowflake_summit_25.png")
# st.title("Snowflake Summit 2025")
st.subheader("BUILD THE FUTURE TOGETHER WITH AI AND APPS")
# st.subheader("Thank You For Joining Snowflake Summit 24!")
# st.title("Save The Date For 2025")
st.write("MOSCONE CENTER | SAN FRANCISCO | JUNE 2-5, 2025")
st.header(f"{days} Days")
with st.container():
col1, col2, col3 = st.columns(3, gap="small")
with col1:
st.metric("Hours", hours)
with col2:
st.metric("Mins", minutes)
with col3:
st.metric("Secs", seconds)
st.markdown("___")
spaces = " "
# st.caption(f"[Register Now](https://www.snowflake.com/summit/) // [Join Us at Dev Day](https://www.snowflake.com/summit/devday/)")
st.caption(f"[Register Now](https://www.snowflake.com/summit/)")
# st.caption(f"[Save The Date](https://www.snowflake.com/summit/save-the-date/)")
st.caption(f"Developed by [Dash](https://www.linkedin.com/in/dash-desai/) // Dedicated to [Saqib](https://www.linkedin.com/in/saqibmustafa/)")
with st.container():
col1, col2, col3 = st.columns([3,3,1])
with col2:
st.image('dash_boarding.png', width=80)