Skip to content

napoles-uach/stvis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stvis

Component for rendering pyvis graphs on Streamlit

"streamlit_stvis example"

Installation

pip install stvis

Example

from pyvis import network as net
import streamlit as st
from stvis import pv_static

g=net.Network(height='500px', width='500px',heading='')
g.add_node(1)
g.add_node(2)
g.add_node(3)
g.add_edge(1,2)
g.add_edge(2,3) 

pv_static(g)

About

stvis component

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages