Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
dmccreary
/
GraphViz-Examples
like
0
Build error
App
Files
Files
Community
dmccreary
commited on
Jul 27, 2022
Commit
39c8eff
•
1 Parent(s):
3f5f830
Create new file
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -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
+
''')