ebraminio / python-igraph

Python interface for igraph

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python interface for the igraph library

igraph is a library for creating and manipulating graphs. It is intended to be as powerful (ie. fast) as possible to enable the analysis of large graphs.

This repository contains the source code to the Python interface of igraph.

You can learn more about python-igraph on our website.

Installation

$ sudo python setup.py install

See details in Installing Python Modules.

Compiling the development version

If you have downloaded the source code from Github and not PyPI, chances are that you have the latest development version, which might not be compatible with the latest release of the C core of igraph. Therefore, to install the bleeding edge version, you need to instruct the setup script to download the latest development version of the C core as well:

$ sudo python setup.py develop --c-core-url https://github.com/igraph/igraph/archive/master.tar.gz

Notes

This version of python-igraph is compatible with PyPy and is regularly tested on PyPy with tox. However, the PyPy version falls behind the CPython version in terms of performance; for instance, running all the tests takes ~5 seconds on my machine with CPython and ~15 seconds with PyPy. This can probably be attributed to the need for emulating CPython reference counting, and does not seem to be alleviated by the JIT.

There are also some subtle differences between the CPython and PyPy versions:

  • Docstrings defined in the C source code are not visible from PyPy.

  • GraphBase is hashable and iterable in PyPy but not in CPython. Since GraphBase is internal anyway, this is likely to stay this way.

About

Python interface for igraph

License:GNU General Public License v2.0


Languages

Language:Python 96.8%Language:C 2.6%Language:Shell 0.4%Language:C++ 0.3%Language:Makefile 0.0%