dmccreary commited on
Commit
39c8eff
1 Parent(s): 3f5f830

Create new file

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ # basic demo of GraphVix with Streamlit
2
+ import graphviz as graphviz
3
+ import streamlit as st
4
+
5
+ st.graphviz_chart('''
6
+ digraph G {
7
+ Provider->Patient
8
+ }
9
+ ''')