Skip to main content

Visualize Snowflake DB tree

Project description

streamlit-dbtree

Visualize Snowflake DB tree

IMAGE ALT TEXT HERE

Installation instructions

pip install streamlit-dbtree

Usage instructions

import streamlit as st

from streamlit_dbtree import streamlit_dbtree

ctx = snowflake.connector.connect(
    user='<user_name>',
    password='<password>'',
    account='<account_locator>'
    )   
value = streamlit_dbtree(ctx,key="mysnownav")
if value is not None:
    for sel in value:
        st.write(sel.get("id") +" IS A " +sel.get("type"))

Options

Show the border or not:
showBorder=<bool>

Tree height:
height=<int>

Tree background color:
backgroundColor=<str> HEX value or str color like "red", "blue"

Tree font color:
fontColor=<str> HEX value or str color like "red", "blue"

Tree background color for selected item(s):
selectColor=<str> HEX value or str color like "red", "blue"

Tree font color for selected item(s):
fontSelectedColor=<str> HEX value or str color like "red", "blue"

Tree background color for hovered item(s):
hoverColor=<str> HEX value or str color like "red", "blue"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit-dbtree-0.2.5.tar.gz (8.1 kB view hashes)

Uploaded Source

Built Distribution

streamlit_dbtree-0.2.5-py3-none-any.whl (9.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page