getting started
installation
showing:
# requires numpy
pip install webweb
git clone https://github.com/dblarremore/webweb
the simplest example
showing:
from webweb import Web
# make a list of unweighted edges
edge_list = [[1, 2], [2, 3], [3, 4]]
# instantiate webweb and show the result
Web(edge_list).show()
% make a list of unweighted edges
edge_list = [...
1, 2;
2, 3;
3, 4;
];
webweb(edge_list);
Check out the examples page for more usecases!