Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dmccreary
/
GraphViz-Examples
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
39c8eff
GraphViz-Examples
/
app.py
dmccreary
Create new file
39c8eff
over 2 years ago
raw
Copy download link
history
blame
Safe
155 Bytes
# basic demo of GraphVix with Streamlit
import
graphviz
as
graphviz
import
streamlit
as
st
st.graphviz_chart(
'''
digraph G {
Provider->Patient
}
'''
)