Metadata-Version: 2.1
Name: streamlit-agraph
Version: 0.0.3
Summary: UNKNOWN
Home-page: UNKNOWN
Author: Christian Klose
Author-email: chris.klose@gmx.net
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: streamlit (>=0.63)



## Install

`pip install streamlit-agraph`

## Use
```python
import agraph
import streamlit

nodes = ["Harry","Sally","Peter","Chris"]
edges = [("Harry","Sally"),("Peter","Chris")]

return_value = agraph(nodes=nodes,
                      edges=edges, 
                      nodeHighlightBehavior="true",
                      node_color="blue", node_size=1000,
                      highlightStrokeColor="blue",
                      highlightColor="lightblue" )
```


![example](https://github.com/ChrisChross/streamlit-agraph/blob/master/imgs/example.png "Simple Example")



