-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHome.py
34 lines (27 loc) · 908 Bytes
/
Home.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
import streamlit as st
import common.sidebar as sb
# Page config params
st.set_page_config(
page_title="Snowflake Stage Inspector",
page_icon="🔬",
layout="wide",
)
# Sidebar info panels
sb.info_panel()
# Hone page body
st.title("Snowflake Stage Inspector")
st.markdown(
"""
🔬Stage Inspector helps you to analyse your ❄️Snowflake internal and external stages.
### Explorer
- Surf through your stages, check the parameters
- Get a list of files on your stages
- Even you can manage your stage files: upload, download or remove them
### Usage
- Overall size of your internal stages
- Getting familiar your biggest files
You can check our [GitHub repository](https://github.com/il-toti/streamlit-snowflake-stage-explorer) or feel free to contact us!
We are [Infinite Lambda](https://infinitelambda.com/).
Author: Gabor Toth.
"""
)