Skip to main content

Automagic Python Bindings for the Open Graph Drawing Framework written in C++

Project description

ogdf-python 0.3.5: Automagic Python Bindings for the Open Graph Drawing Framework

ogdf-python uses the black magic of the awesome cppyy library to automagically generate python bindings for the C++ Open Graph Drawing Framework (OGDF). It is available for Python>=3.6 and is Apache2 licensed. There are no binding definitions files, no stuff that needs extra compiling, it just works™, believe me. Templates, namespaces, cross-language callbacks and inheritance, pythonic iterators and generators, it's all there. If you want to learn more about the magic behind the curtains, read this article.

Useful Links

Original repository (GitHub) - Bugtracker and issues (GitHub) - PyPi package (PyPi ogdf-python) - Try it out! (mybinder.org).

Official OGDF website (ogdf.net) - Public OGDF repository (GitHub) - OGDF Documentation (GitHub / Doxygen) - cppyy Documentation (Read The Docs).

Quickstart

Click here to start an interactive online Jupyter Notebook with an example OGDF graph where you can try out ogdf-python: binder
Simply re-run the code cell to see the graph. You can also find further examples next to that Notebook (i.e. via the folder icon on the left).

To get a similar Jupyter Notebook with a little more compute power running on your local machine, use the following install command and open the link to localhost/127.0.0.1 that will be printed in your browser:

pip install 'ogdf-python[quickstart]'
jupyter lab

The optional [quickstart] pulls in matplotlib and jupyter lab as well as a ready-to-use binary build of the OGDF via ogdf-wheel. Please note that downloading and installing all dependencies (especially building cppyy) may take a moment. If you want to use your own local build of the OGDF, see the instructions below for installing ogdf-python without ogdf-wheel.

[!IMPORTANT]
We currently support Linux, MacOS on Intel and Apple Silicon, and the Windows Subsytem for Linux. Directly running on Windows is not supported, see issue 4. When using WSL, make sure that you are using the Linux python(3) and not the Windows python.exe, i.e. the startup message of the python interpreter should end with on linux instead of on win32.

Usage

ogdf-python works very well with Jupyter:

# %matplotlib widget
# uncomment the above line if you want the interactive display

from ogdf_python import *
cppinclude("ogdf/basic/graph_generators/randomized.h")
cppinclude("ogdf/layered/SugiyamaLayout.h")

G = ogdf.Graph()
ogdf.setSeed(1)
ogdf.randomPlanarTriconnectedGraph(G, 20, 40)
GA = ogdf.GraphAttributes(G, ogdf.GraphAttributes.all)

for n in G.nodes:
    GA.label[n] = "N%s" % n.index()

SL = ogdf.SugiyamaLayout()
SL.call(GA)
GA

Read the pitfalls section and check out docs/examples/pitfalls.ipynb for the more advanced Sugiyama example from the OGDF docs. There is also a bigger example in docs/examples/ogdf-includes.ipynb. If anything is unclear, check out the python help help(ogdf.Graph) and read the corresponding OGDF documentation.

Installation without ogdf-wheel

Use pip to install the ogdf-python package locally on your machine. Please note that building cppyy from sources may take a while. Furthermore, you will need a local shared library build (-DBUILD_SHARED_LIBS=ON) of the OGDF. If you didn't install the OGDF globally on your system, either set the OGDF_INSTALL_DIR to the prefix you configured in cmake, or set OGDF_BUILD_DIR to the subdirectory of your copy of the OGDF repo where your out-of-source build (and especially the generated OgdfTargets.cmake file) lives.

$ pip install ogdf-python
$ OGDF_BUILD_DIR=~/ogdf/build-release python3

Debug and Release Mode

Starting with OGDF 2025.10 (Foxglove), your chosen build mode (debug or release) also affects the name of the built shared libraries (e.g. libOGDF-debug.so instead of libOGDF.so) as well as the location of the header file containing configuration information (ogdf-{debug,release}/ogdf/basic/internal/config_autogen.h). By default, ogdf-python will attempt to load the release versions, even if you only have the debug version built/installed. To load the debug versions instead, set the environment variable OGDF_PYTHON_MODE=debug.

$ OGDF_BUILD_DIR=~/ogdf/build-debug OGDF_PYTHON_MODE=debug python3
$ OGDF_PYTHON_MODE=debug python3 # also works if you have both versions installed next to each other

Pitfalls

See also docs/examples/pitfalls.ipynb for full examples.

OGDF sometimes takes ownership of objects (usually when they are passed as modules), which may conflict with the automatic cppyy garbage collection. Set __python_owns__ = False on those objects to tell cppyy that those objects don't need to be garbage collected, but will be cleaned up from the C++ side.

SL = ogdf.SugiyamaLayout()
ohl = ogdf.OptimalHierarchyLayout()
ohl.__python_owns__ = False
SL.setLayout(ohl)

When you overwrite a python variable pointing to a C++ object (and it is the only python variable pointing to that object), the C++ object will usually be immediately deleted. This might be a problem if another C++ objects depends on that old object, e.g. a GraphAttributes instance depending on a Graph instance. Now the other C++ object has a pointer to a deleted and now invalid location, which will usually cause issues down the road (e.g. when the dependant object is deleted and wants to deregister from its no longer alive parent). This overwriting might easily happen if you run a Jupyter cell multiple times or some code in a for-loop. Please ensure that you always overwrite or delete dependent C++ variables in the reverse order of their initialization.

for i in range(5):
    # clean-up all variables
    CGA = CG = G = None # note that order is different from C++, CGA will be deleted first, G last
    # now we can re-use them
    G = ogdf.Graph()
    CG = ogdf.ClusterGraph(G)
    CGA = ogdf.ClusterGraphAttributes(CG, ogdf.ClusterGraphAttributes.all)

    # alternatively manually clean up in the right order
    del CGA
    del CG
    del G

There seems to be memory leak in the Jupyter Lab server which causes it to use large amounts of memory over time while working with ogdf-python. On Linux, the following command can be used to limit this memory usage:

systemd-run --scope -p MemoryMax=5G --user -- jupyter notebook

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ogdf_python-0.3.5.tar.gz (1.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ogdf_python-0.3.5-py3-none-any.whl (794.7 kB view details)

Uploaded Python 3

File details

Details for the file ogdf_python-0.3.5.tar.gz.

File metadata

  • Download URL: ogdf_python-0.3.5.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for ogdf_python-0.3.5.tar.gz
Algorithm Hash digest
SHA256 6978643f26e4ac38e79d13b8dd1127aef4b0f5297494272f6d11196988e1ddfb
MD5 fdfe67a0c3b75c2705844eeaf9ebe45e
BLAKE2b-256 7cc00a300c767479bd83ac64c7d3ab628ea82bab5e554495d13db50d96191cb7

See more details on using hashes here.

File details

Details for the file ogdf_python-0.3.5-py3-none-any.whl.

File metadata

  • Download URL: ogdf_python-0.3.5-py3-none-any.whl
  • Upload date:
  • Size: 794.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for ogdf_python-0.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8c441658655bb7b74ee4e0714e1052bef4ae70e656421853cfc22d1346726fd1
MD5 49d570036694f4cc8c739b22a6e1c452
BLAKE2b-256 f98ed2750a01adca1bb034dcd6746524326f6fe4ef6ed7ac2d420b4608b138ca

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page