Skip to main content

Rust port of the Python stdlib graphlib modules

Project description

graphlib2

This is a Rust port of Python's stdlib graphlib. It passes all of the standard libraries tests and is a drop in replacement. This also happens to be Python 3.7 compatible, so it can be used as a backport. Since usage is exactly the same as the standard libraries, please refer to their documentation for usage details.

Example

from graphlib2 import TopologicalSorter

graph = {0: [1], 1: [2]}  # 0 depends on 1, 1 depends on 2
ts = TopologicalSorter(graph)
ts.prepare()
while ts.is_active():
    ready_nodes = ts.get_ready()
    ts.done(*ready_nodes)  # all at a time or one by one

Motivation

This was primarily written for di and for me to learn Rust. In other words: please vet the code yourself before using this.

Differences with the stdlib implementation

  1. Additional APIs for removing nodes from the graph (TopologicalSorter.remove_nodes) and copying a prepared TopologicalSorter (TopologicalSorter.copy).
  2. A couple factors (~5x) faster for large highly branched graphs.
  3. Unlocks the GIL during certain operations, which can considerably speed up multithreaded workloads.

Development

  1. Clone the repo.
  2. Run make init
  3. Run make test

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

graphlib2-0.2.5.tar.gz (125.4 kB view hashes)

Uploaded Source

Built Distributions

graphlib2-0.2.5-pp38-pypy38_pp73-win_amd64.whl (147.2 kB view hashes)

Uploaded PyPy Windows x86-64

graphlib2-0.2.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (216.5 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

graphlib2-0.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (199.0 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

graphlib2-0.2.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (242.9 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

graphlib2-0.2.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (199.5 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

graphlib2-0.2.5-pp37-pypy37_pp73-win_amd64.whl (147.2 kB view hashes)

Uploaded PyPy Windows x86-64

graphlib2-0.2.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (216.5 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

graphlib2-0.2.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (199.0 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

graphlib2-0.2.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (242.9 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

graphlib2-0.2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (199.5 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

graphlib2-0.2.5-cp37-abi3-win_amd64.whl (147.1 kB view hashes)

Uploaded CPython 3.7+ Windows x86-64

graphlib2-0.2.5-cp37-abi3-musllinux_1_1_x86_64.whl (249.0 kB view hashes)

Uploaded CPython 3.7+ musllinux: musl 1.1+ x86-64

graphlib2-0.2.5-cp37-abi3-musllinux_1_1_i686.whl (268.6 kB view hashes)

Uploaded CPython 3.7+ musllinux: musl 1.1+ i686

graphlib2-0.2.5-cp37-abi3-musllinux_1_1_aarch64.whl (233.5 kB view hashes)

Uploaded CPython 3.7+ musllinux: musl 1.1+ ARM64

graphlib2-0.2.5-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (216.4 kB view hashes)

Uploaded CPython 3.7+ manylinux: glibc 2.17+ x86-64

graphlib2-0.2.5-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (198.8 kB view hashes)

Uploaded CPython 3.7+ manylinux: glibc 2.17+ ARM64

graphlib2-0.2.5-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (243.0 kB view hashes)

Uploaded CPython 3.7+ manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

graphlib2-0.2.5-cp37-abi3-macosx_10_9_x86_64.whl (199.4 kB view hashes)

Uploaded CPython 3.7+ macOS 10.9+ x86-64

Supported by

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