mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
91627c0fe2
Release notes at <https://github.com/igraph/python-igraph/releases/tag/0.8.3> - Update WWW: URL - Set LIB_DEPENDS for math/igraph - Depends on py-cairocffi - Let it find an image viewer for FreeBSD Without that, you cannot run code like: >>> import igraph as ig >>> g = ig.Graph.Famous("petersen") >>> ig.plot(g) - Add a plist PR: 252381 Submitted by: /me Approved by: lwhsu@ (maintainer)
8 lines
369 B
Plaintext
8 lines
369 B
Plaintext
This module extends Python with a Graph class which is capable of handling
|
|
arbitrary directed and undirected graphs with thousands of nodes and millions
|
|
of edges. Since the module makes use of the open source igraph library
|
|
written in almost 100% pure C, it is blazing fast and outperforms most other
|
|
pure Python-based packages around.
|
|
|
|
WWW: https://igraph.org/python/
|