dmccreary's picture
Create new file
39c8eff
raw
history blame contribute delete
155 Bytes
# basic demo of GraphVix with Streamlit
import graphviz as graphviz
import streamlit as st
st.graphviz_chart('''
digraph G {
Provider->Patient
}
''')