Skip to main content

passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers

Project description

passagemath is open source mathematical software in Python, released under the GNU General Public Licence GPLv2+.

It is a fork of SageMath, which has been developed 2005-2026 under the motto “Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, and MATLAB”.

The passagemath fork uses the motto “Creating a Free Passage Between the Scientific Python Ecosystem and Mathematical Software Communities.” It was created in October 2024 with the following goals:

Moreover, the passagemath project:

  • provides a stable, frequently updated version of the Sage distribution,

  • integrates additional mathematical software, notably Macaulay2, a full set of GAP packages, and the Combinatorial Matrix Recognition library,

  • curates a library of Sage user packages.

Full documentation is available online.

passagemath attempts to support and provides binary wheels suitable for all major Linux distributions and recent versions of macOS.

Binary wheels for native Windows (x86_64, ARM) are are available for a subset of the passagemath distributions. Use of the full functionality of passagemath on Windows currently requires the use of Windows Subsystem for Linux (WSL) or virtualization.

The supported Python versions in the passagemath-10.8.x series are 3.11.x-3.14.x; the passagemath-10.6.x series (EOL 2026-10) still supports Python 3.10.x.

About this pip-installable distribution package

This pip-installable package passagemath-graphs is a distribution of a part of the Sage Library. It provides a small subset of the modules of the Sage library (“sagelib”, passagemath-standard) for computations with graphs, posets, complexes, etc.

It consists of over 170 first-party Python and Cython modules and uses the Boost Graph Library, with additional functionality from NetworkX and several other libraries.

What is included

Examples

A quick way to try it out interactively:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[test]" ipython
In [1]: from passagemath_graphs import *

In [6]: g = Graph([(1, 3), (3, 8), (5, 2)]); g
Out[6]: Graph on 5 vertices

In [7]: g.is_connected()
Out[7]: False

Available as extras, from other distributions

Libraries

pip install passagemath-graphs[benzene,buckygen,plantri] additionally make various graph generators available via passagemath-benzene, passagemath-buckygen, and passagemath-plantri.

pip install passagemath-graphs[bliss] additionally installs passagemath-bliss for the purpose of computing graph (iso/auto)morphisms.

pip install passagemath-graphs[cliquer] additionally installs passagemath-cliquer

pip install passagemath-graphs[cmr] additionally installs passagemath-cmr for recognition and decomposition algorithms for network matrices, totally unimodular matrices and regular matroids, series-parallel matroids, etc.

pip install passagemath-graphs[gap] additionally installs passagemath-gap for group-theoretic functionality.

pip install passagemath-graphs[igraph] additionally installs igraph:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[igraph,test]" ipython
In [1]: from passagemath_graphs import *

In [2]: ## Example depending on igraph goes here

pip install passagemath-graphs[mcqd] additionally installs passagemath-mcqd

pip install passagemath-graphs[nauty] additionally installs passagemath-nauty for computing automorphism groups of graphs and digraphs.

pip install passagemath-graphs[networkx] additionally installs NetworkX:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[networkx,test]" ipython
In [1]: from passagemath_graphs import *

In [2]: ## Example depending on networkx goes here

pip install passagemath-graphs[pari] additionally installs passagemath-pari

pip install passagemath-graphs[planarity] additionally installs passagemath-planarity for planarity testing.

pip install passagemath-graphs[rankwidth] additionally installs passagemath-rankwidth for rank width and rank decompositions.

pip install passagemath-graphs[tdlib] additionally installs passagemath-tdlib for computing tree decompositions.

Features

pip install passagemath-graphs[combinat] additionally installs passagemath-combinat

pip install passagemath-graphs[editor] additionally installs the interactive graph editor phitigra.

pip install passagemath-graphs[groups] additionally makes group-theoretic features available via passagemath-gap, passagemath-groups, and passagemath-nauty:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[groups,test]" ipython
In [1]: from passagemath_graphs import *

In [2]: g = Graph({
            0: [1, 2],
            1: [0, 2],
            2: [0, 1, 3],
            3: [2]
        })

In [3]: aut = g.automorphism_group()

In [4]: print(aut.order())

pip install passagemath-graphs[homology] provides homological computations for abstract complexes via passagemath-modules.

pip install passagemath-graphs[mip] additionally makes the mixed-integer programming solver GLPK available via passagemath-glpk and passagemath-polyhedra (see there for other available solvers).:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-graphs[mip,test]" ipython
In [1]: from passagemath_graphs import *

In [2]: ## Example depending on MIP goes here

pip install passagemath-graphs[modules] additionally makes linear algebra features available via passagemath-modules.

pip install passagemath-graphs[plot] additionally installs passagemath-plot.

pip install passagemath-graphs[polyhedra] additionally installs passagemath-polyhedra.

pip install passagemath-graphs[sat] additionally provides SAT features via passagemath-combinat.

pip install passagemath-graphs[standard] installs all libraries and features related to graphs that are available in a standard installation of Sage.

Development

$ git clone --origin passagemath https://github.com/passagemath/passagemath.git
$ cd passagemath
passagemath $ ./bootstrap
passagemath $ python3 -m venv graphs-venv
passagemath $ source graphs-venv/bin/activate
(graphs-venv) passagemath $ pip install -v -e pkgs/sagemath-graphs

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

passagemath_graphs-10.8.5rc1.tar.gz (2.3 MB view details)

Uploaded Source

Built Distributions

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

passagemath_graphs-10.8.5rc1-cp314-cp314t-win_arm64.whl (7.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

passagemath_graphs-10.8.5rc1-cp314-cp314t-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

passagemath_graphs-10.8.5rc1-cp314-cp314t-musllinux_1_2_x86_64.whl (37.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc1-cp314-cp314t-musllinux_1_2_aarch64.whl (37.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.8.5rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (37.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.8.5rc1-cp314-cp314t-macosx_13_0_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_graphs-10.8.5rc1-cp314-cp314t-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_graphs-10.8.5rc1-cp314-cp314-win_arm64.whl (7.1 MB view details)

Uploaded CPython 3.14Windows ARM64

passagemath_graphs-10.8.5rc1-cp314-cp314-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86-64

passagemath_graphs-10.8.5rc1-cp314-cp314-musllinux_1_2_x86_64.whl (36.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc1-cp314-cp314-musllinux_1_2_aarch64.whl (35.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (35.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.8.5rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.8.5rc1-cp314-cp314-macosx_13_0_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_graphs-10.8.5rc1-cp314-cp314-macosx_13_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc1-cp313-cp313-win_arm64.whl (6.9 MB view details)

Uploaded CPython 3.13Windows ARM64

passagemath_graphs-10.8.5rc1-cp313-cp313-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.13Windows x86-64

passagemath_graphs-10.8.5rc1-cp313-cp313-musllinux_1_2_x86_64.whl (37.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc1-cp313-cp313-musllinux_1_2_aarch64.whl (35.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.8.5rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.8.5rc1-cp313-cp313-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_graphs-10.8.5rc1-cp313-cp313-macosx_13_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc1-cp312-cp312-win_arm64.whl (6.9 MB view details)

Uploaded CPython 3.12Windows ARM64

passagemath_graphs-10.8.5rc1-cp312-cp312-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.12Windows x86-64

passagemath_graphs-10.8.5rc1-cp312-cp312-musllinux_1_2_x86_64.whl (37.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc1-cp312-cp312-musllinux_1_2_aarch64.whl (35.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.8.5rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.8.5rc1-cp312-cp312-macosx_13_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_graphs-10.8.5rc1-cp312-cp312-macosx_13_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_graphs-10.8.5rc1-cp311-cp311-win_arm64.whl (7.0 MB view details)

Uploaded CPython 3.11Windows ARM64

passagemath_graphs-10.8.5rc1-cp311-cp311-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.11Windows x86-64

passagemath_graphs-10.8.5rc1-cp311-cp311-musllinux_1_2_x86_64.whl (37.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_graphs-10.8.5rc1-cp311-cp311-musllinux_1_2_aarch64.whl (36.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.5rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (36.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.8.5rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (35.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.8.5rc1-cp311-cp311-macosx_13_0_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_graphs-10.8.5rc1-cp311-cp311-macosx_13_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file passagemath_graphs-10.8.5rc1.tar.gz.

File metadata

  • Download URL: passagemath_graphs-10.8.5rc1.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for passagemath_graphs-10.8.5rc1.tar.gz
Algorithm Hash digest
SHA256 291e32bac5e66bb7856eff7e181dd44c504fff12ae6ee72d0f4268e1af2dd13e
MD5 77daf1679c66317a71309f8bf79efc32
BLAKE2b-256 fa4b8530de1e32f272d192319cf5fa4c1c0d02a25587d156e45319a61bca691e

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2c03b771f5c181894f5b415a973a30f915951780ce12651d27ec4682a0b950b2
MD5 ab2e7466ea98596ca663515eeebe19c9
BLAKE2b-256 3c1979c63d7eec515672b9898813a46927a2537f87997b5aa9b6be3ba705a809

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4d345bcaec22d06d8479956ae1a28f41a806c17c36177b8aa3d841b052c2ae36
MD5 e96b0358abf3cf203f86750aa393eb19
BLAKE2b-256 866feb6d2b97f03dc0763fc649977914bcd63666050c0e3c4ad1d9a5e10f4dc0

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcc1a4461c939ce01325e06f6eab68248dba5134673177dfba572c1131659cec
MD5 5d020d32afc00273cc18c6e2b65ab682
BLAKE2b-256 0ff6dcf73cc3e93e14433875b63efa6909b325b9a246d72787e095fd0670aca7

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54a61afbc8ef4c6521820bc1b1d1ba3e511b25a49607e6d866ea719a7890b71d
MD5 9beb1de945bc85ade0c546a6061257a9
BLAKE2b-256 14299d91e78b454073094f8376cb918eaf46958a4f6b38166fabb45c4730cf50

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b4c8a0309659f2a41adad249d08856e5dab2f42ba8c391ad633848d45b04294
MD5 a7c3b052e5f35ce6aabf60a3029cb9a4
BLAKE2b-256 c00887aadc56be63ca348ce22d590978d6ef54719e0fc49d3164576d9a2cab8f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac84892fc0dd48e749187d8fdf606cf55cd3626624f8a58e9d70cb22221a0716
MD5 bef51b4c9dab6231565869461a6d532c
BLAKE2b-256 df55a63a3d902dc944f9f56e26f4012e95d5362ba079b9f2e263eb1e50b9618b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1327bb880345ab03ed0defefb812c002fd5c93abaa53ece0f113e12668cda2f8
MD5 f0a5694039c62779ba7538986eb81c6f
BLAKE2b-256 2d16b9c51251b92bfb786c7ccee813e35bf2c9b182d778c49df6ebd4968757a1

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 39aae741bdc4e6dd5fdeefbf31ce5c081a9c78a741b2fb4e031ac8dffe5ab4e6
MD5 32793578f779925a3c76c9853049ae0a
BLAKE2b-256 613974fa46cf2f41b279505d1f893206e3f870906f6e62a8e77ba92508727714

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b2421ce3d9f974378acdd8a8953e9ab1337c3e85ec197b3f5cda795823a2c918
MD5 07364288d46913c911e89a2a9f704a36
BLAKE2b-256 934763cd56956de1c890633a836982458de578d496c462b25a729841f0aa054b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 42453d6f08fd160bbcb8caec8fbf1e06666b23e4130457906c2a56fed57fe98a
MD5 bedfb812a438cdc317021ca02de441fd
BLAKE2b-256 ae476ef1bed61b2804ea7aebaa2f81fd53cd805d9569815f28ceaf5448cfa861

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fccf3dd16d4332c776331924db43cedaa2a5da4dd41c0112c1bb32d376ca8086
MD5 7871c7b6e817fa948d612473fbcf5ffc
BLAKE2b-256 8590546047da4f9d0b03d35660d9e3003e00f3ccec438be5361579eb1287bbbe

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6d7aa74a6a11914ec7ff738d4cad738b4bd71ce9a947b20c2f7a19b8c5ad4e9
MD5 32e8ad300d947960d1165d5164ca58c8
BLAKE2b-256 5de495e50bf5d16cb648efd2f6115146002117f3702a65d4d365ef900f4f31c4

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8815fb30281417b946d0f6a0c7011e79eea56654f405dfacfe125cc9bd7160e7
MD5 2f75060980b6ed04f7ad1a159074b675
BLAKE2b-256 ed5052081c21b0640f6f0346767ecb8d8149a3432729c232724d8fe0fd46285f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2edc7c5ddcd0ceb386c97c1b4cb7581b6502a3cd2b1440ba1e5d0e55b000a8c2
MD5 82f0ab4f93051e84b683e75dc527624b
BLAKE2b-256 1307acb25c371d1ff8d0d4a3da92ffddaf29020fb00a2dc9c8158c2372bf9b97

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 796848d6104a367d674b1e4c482b9eb36cc44638dbbf31e45e22bcc8fa9324fa
MD5 fbde0ec918754c0c12708cd2fe3cd6d2
BLAKE2b-256 26170073d85d333187a1bb7389702221c413c057d56b4790195e550fe1439b88

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3f53cb92e777a5ac78565e2aa141f9b096e06a5bfe72c50acc30ec701cb91df0
MD5 4cc35ccb4f86b72d8e7cac508b6da207
BLAKE2b-256 ec8120996a0ee673a8f18e3ab9f8f5923b5835514f0169db7808bea79f0ca570

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4721f507381cc426fd94e023bd8c7649c1b47932dfbb7ce663d4a26cdfaa6b18
MD5 a4213128ef938c8e8ceb8385f5753d2f
BLAKE2b-256 75dd0ac5e1bd9c173378d2b5370b795271f4b9020981f3c32e7d8d7a2291ee33

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 333b828e8760aef831fa7165684e294ceb8f2cd0ffa93cd3bfc9ea7c04d7e4e8
MD5 8529df76d99f9faee487ab66722964cb
BLAKE2b-256 12b848fea1ffa7861c35898ef74bcc4fcfaa230d15928a87309940b6a444d2f7

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2de33ee209a7d92d70c35a09d313a560f220b9ce7b999088633e09e3bebfb6dc
MD5 d3f96338545cb779fb8af6856ef7677d
BLAKE2b-256 9465f7d1a235a69ded38ab780e25b83036e63c714356579045d58c72debcfed7

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 632b07af2531226bd2e09b08355ca361b07ddff2851a49df4b0b53cce0f115ae
MD5 65da1787301b7b95dbcb96a16c2c4c94
BLAKE2b-256 13683d77b0f31bff54047eeef1871d8368150da78b74bb57a697fe383fbb5cbd

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02fc8a51c5cf25766f1af8754772e73382add64de9e2a544df2d5290c2481b56
MD5 93a0b9b260c84be0d329513c45ce7090
BLAKE2b-256 c74f29fe0c614856fb0e04cbba7fa76ed3a80b7c06bd5b5a2f9a90cbdaa9774b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc41d6a1d188d08a865aa5eb2184526065462c26ad4ef313c0b364f9299557ce
MD5 951009bca773714889ad61bc0229526d
BLAKE2b-256 c6bb7231952b7d3125d20e6a50f3972461f32303c7fa9daa548e0e61dc7a0a50

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 471bfa99fa1f15204fffddcf1011c3af6b88da1e46d92bc9e0ec18d5ac7cadc2
MD5 afc2ee1cf981789661f70f7a1b4f0bac
BLAKE2b-256 92719355d1b24c875640f0ea7bd5f386c72e12b51f100d88bbd68b9142a9f82f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f571ccca9f6f234004e18b0db11c11083bdfff55325d745c8a5228da5603759f
MD5 dba871dee93fd57b9f28869ea229d6bb
BLAKE2b-256 bee53fb384c6d97e13cd7e5a70b3bce0121f939d8a78cacf40d113f99241f08e

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 039c5eec6e29a5e66d0fba9303d1c253554dfa37b6376fc0ea2c0bff1ed8608f
MD5 8ea90cf035b87c6c9c53c8a4d4dc8ef5
BLAKE2b-256 55d66f8f5694e40634d001bd6ee73fc91ff9dff2e6c9798491e2b16219cbb79e

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8967b74f10c204cd9b2b5abe6c3bf7acfa5559f86b0cefb1124fd77878567476
MD5 5ab60f87444dd338efdb876ab2f4fa0f
BLAKE2b-256 803eed2eee9061ca29cc29ab05fc5686446dbc5c1c235b20e117c255515c9514

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 698df5170540cb5c4fad5824b0bbe48bcde1c226a0e4441b4eaeecee24a86e9d
MD5 f9999da8927bf762b63cd83cd698c048
BLAKE2b-256 4cfb3af6e55b6a16f0b8e12f4504a8898c23ccecf87f8e0c1cad34c6174ea3af

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b96a7cb45589b452947858f130d860094841be27494cbc75d7458f32d3e18de
MD5 feaf10c015405a0b350a8eb43d808bec
BLAKE2b-256 448578ae8c084807d8b9531e58262740add4cb1bb7a63f40ee8fa85cf1b56524

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df7cd3375d8b54d80a9277b9ce8cfaba86a4b85edd8d4350810177df6aff8741
MD5 069c380e7f81b82e6890202e2c55c9de
BLAKE2b-256 5b6f396043e1f48463f124cb7f16cbbde2dcf356715d702dc47ea9d29f320f0e

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7926ae92e7d6bba43ebd6bc910e6b457aa1fb6e78e9c86d95af67eaafce0288a
MD5 ae86540b5edbf036117a950860b175c2
BLAKE2b-256 9e99a08394df804c4adc9d951431275ebb7c947781190940d07e4cae37829370

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2b2a9261e5abc960460e119717ef0a86baf1a3359d1091fc5e79d908ee810537
MD5 9ceeda7a1893036bf8f84ef4b2c60d78
BLAKE2b-256 c5b0a05e20ac15021ea0a940f8c9fe43994b45a8f126dc07876334e753ef580f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 0c27bc82c767154ff7df10f59e26dd1236514146a3053a0e3cf0bd51c232fbee
MD5 05906eebb5678a7a76a6f25cf29cafc8
BLAKE2b-256 18640a3ef02a1f187161571cecb9ae1a25ad2418d6d39fcbdb86faaa41269e5a

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9d97af8da127dabd4805f95fd02edd6019cfddfad3e231f78a3395d43b5b528a
MD5 1a533c09d3958296d5710a403c6b60be
BLAKE2b-256 dc45ca0eb4df6839052709291f0a69fc3f0e5d3c018d644773a536bb725ab2b4

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 03d9892b400a49c8a8ed09baa867fe31a2c4d227c79fd3bfabbaf357f879108f
MD5 624efacca1e48afedc96ca3640566822
BLAKE2b-256 43ffeb958e40555ebcef5ac3081a9b7c1ac3b23165af083a13aacbe15d43cff0

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dd356806bf40da8a15b0b6e67ac2c5a34c1283128139e70445cd6805395e3eb
MD5 ae1dbd07b02e762f0056b1290ba5ae53
BLAKE2b-256 630594347713e7ab03e82f69ccd9522e46a55031b335c71dd8edfba98fb4fd1f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 529651b0d58a308449fbcd810c00352954f6db922d9d3ddc351a23f97fc8463b
MD5 bdd8217909e08620eb5a64a2f429cd60
BLAKE2b-256 fd0374d3c09bd539b608d805ac43969ed7b9e1675be9c0180784559b6e6e3ba8

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68996ec9f4bbc8688629ca03981401f165fd13971687d278a5c6002e48645405
MD5 bde4f84dcc65e78f2be8a49c53ec53e2
BLAKE2b-256 11765a1dc5dd600b1cf0bd0d9b61b1ecf8ee36a279b3f826a858fe39ce68c827

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c6abe9d388ff49fe426b5f16be594c2e81850c4b5e422bc05879054ae811784
MD5 966175e26750037a90cc9f8fedd61d81
BLAKE2b-256 10bc7702b209a57f22fcd4de5504b255ee57f509fd623db2dc0377f8adadc653

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1b43fcea76bb33a0a854a4cccbc93ec82092a5d241c009b0a7014708d242eda5
MD5 3a7b3b5b6c06784c90a1ca1d9309c402
BLAKE2b-256 7c8fb8eca1e2bba1274a5bdcf8f6a3174dc4fccde6e0c358fece5c64b940725b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.5rc1-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.5rc1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4fc3b996b3f43482a3a36e36e16d82c44dd491f1152f8c61cb9ea4fc10c2c614
MD5 4e3ca64694aa960ad014bdba6cc63be6
BLAKE2b-256 2bb22cc7ba3c20999a089336c4a4f98340a6ac0967e77dee77c670d0a1cee050

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