File size: 155 Bytes
39c8eff
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# basic demo of GraphVix with Streamlit
import graphviz as graphviz
import streamlit as st

st.graphviz_chart(''' 
digraph G {
    Provider->Patient
}
''')