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.4.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.4-cp314-cp314t-win_arm64.whl (7.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

passagemath_graphs-10.8.4-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.4-cp314-cp314t-musllinux_1_2_aarch64.whl (37.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.4-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.4-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.4-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.4-cp314-cp314t-macosx_13_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_graphs-10.8.4-cp314-cp314-win_arm64.whl (7.0 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

passagemath_graphs-10.8.4-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.4-cp314-cp314-musllinux_1_2_aarch64.whl (35.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.4-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.4-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.4-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.4-cp314-cp314-macosx_13_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

passagemath_graphs-10.8.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl (35.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.4-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.4-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.4-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.4-cp313-cp313-macosx_13_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

passagemath_graphs-10.8.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl (35.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.4-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.4-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.4-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.4-cp312-cp312-macosx_13_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_graphs-10.8.4-cp311-cp311-win_arm64.whl (6.9 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

passagemath_graphs-10.8.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl (36.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.4-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.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: passagemath_graphs-10.8.4.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.4.tar.gz
Algorithm Hash digest
SHA256 f8efc0c088fcfc1ce0980312cbb9bfe33691f790c1627405ccfb64832185a053
MD5 aea2cea1bf74747009da65b89409be9d
BLAKE2b-256 08c881b9275112d7ee169a9af0e6999de3dad47a0b3de837341531875f0692aa

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1820e33774d4b17c06eeea5bb4d6c4165f12c5ab8457a55f88ff850f6afee02a
MD5 15492097bab9125294a5805fa76a5bb3
BLAKE2b-256 98ee7f74c527aae959a95bd5845cb123c0b1ac4ceddaa55c9e48dff75c5928db

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9f98cef73e3f420ab58daca5d9cd1b464472c0f618a94d0a7cf8cedd770feb02
MD5 f8cb5b46d8ba6e42bb47f7e6837ab9c4
BLAKE2b-256 bc309a4b4d4c89728508dda0eef3143009679786552deb2e4e8df344e07b5666

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d2345b9d707df801f92c4af0358ab563c2fb05c965547bf73b1a49bfdbb56dd
MD5 baa7a3a06061478ee415087fb8fe13f7
BLAKE2b-256 5d60e5405b34450595146047169dbd19c3590658d35e9fa849f51cd3f3680883

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77338e9ed0e2f6102813a034c336a5624b170f229d4606418eb61300df13836d
MD5 858835abb103d7d665a762a205980285
BLAKE2b-256 fa9dc7ddf88f4166d78818a82b2f5fad919e581f61170bfb18a39c47b2513dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21cabe3c870e32346b9d5573352b3f28e19084a46dd29c59083cebf840342133
MD5 75e238141d5de561e5c006d809737ebe
BLAKE2b-256 dff49d5249fe3920e22c55b344c9ebaf08629cf2246fa6b2520b4101a7870a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1367f61c1968a10320527f169738ef7979dfe024d3eb5fcd0850d813116da190
MD5 4f214bb6c985c5870c8e77fbbb529538
BLAKE2b-256 258460dca94615f95482320702d0ce2e375609b8df14154fb7f79d6de6486b2f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f18f56849c24eff9adb448808aa76c8a3c7e2e2c164e431f71e6eaebee03d3d4
MD5 681838435dbb65ceed4219acdfa4f426
BLAKE2b-256 60dd9429c747cbf4964d96306f4cc1b2230bd5d8cc64ddef6aabb8472f0f8381

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4b96252bf53425b4e5805401d25f4b531f186091d8a181cb5da17e98be62a78c
MD5 0889768f8809ace52239035ec04560ac
BLAKE2b-256 003ee83607299808cb3a859a24c9e48507bc5b8f22ec6a5690878ed93249c598

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1d56243ea589908d5ada4c61cce7a027e521c2cda2a7c9fa02d73138c7d5656f
MD5 be3f6af0cded4039fdb863265b8fa0d9
BLAKE2b-256 620072f8531c3f52897aca2a9bb56b23dc81c8f3a01cedb6e979e7344657f244

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 185c171cefd7fa7a6fec506c61a95c1cae409a47f7f6992bf1eec3fa598ec8d9
MD5 86a12ffed4a106ce46365fd836ed6120
BLAKE2b-256 d69b6547547863aee871b5e24f517ab532e7a1f2ac83b45f52494c6c76d14563

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cebe3292522cf39e76ef167279529a0372167951472bc6b3b333433c11602948
MD5 2f9fc23110d5cf6ec96e4e852d5bc967
BLAKE2b-256 08300769292c17401f3e0b4b9431d952629b85d8faef7821c5317541a8b6b4cc

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 091e7571c8a0b66ee5e86840140f8547a1b363b19eb43e6084ca36a76dbe432b
MD5 60dccc301545216e13389666a0c28795
BLAKE2b-256 23796fec771c79520c76c76bd54acaa85fbac9c2d7681d59dbc83931877629c5

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63842fe851bc61780df910a0e08f96527c640c78587e7eba2016917f90fce081
MD5 42481fb9b9426fdbfe1bc76a30111898
BLAKE2b-256 0392ebee72bb4f2e4a1467361619f0509283800df95e0bb0b54b60b7c874580b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b55ea06ce525b0ce116ec551bd2643fabed2152180edb10ba9b0128c19a16cc
MD5 bbd314a3c10f4424accd7abbd80f822d
BLAKE2b-256 7bd25a65a631455cd0f97a2fbf8f53925b2a623a7d082c14fbdd1cd9033a7638

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 29ba0619fa3d8cdd326e29def8b7b93c5c434f5a098da5a9b30e60714847a6de
MD5 1c58ce73e816593cb53708d9e22e11b0
BLAKE2b-256 e449cc91b7a4f2029a7f6e162ae5156a4b978ef2c98aaf0e64632f8237aa392a

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b1a3a6f058c67fb215efbddcd9673a4a04ee676a3d516a7bd276e1ff59690043
MD5 d82c177054d729a6d1a63370c31a7d50
BLAKE2b-256 3169878ba337112134ec81eff46bfc7229e8eec70933e6912c28a1c1eb3054b8

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6485719307434b2a2a62adcf7560a6646f9692905d568c744e3660fc5566f525
MD5 e730b57f0c99bc2f2078fbce100ae6a3
BLAKE2b-256 18c2d73ca13aebd44b016dc90a3bd5c05864c4f2aaf19cc9c376fd08e1f9c14f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a422984622a19b5e694e81fa2d2c6048edc874411e3cc8683dede555a8548f73
MD5 7e32abc8a95e16e0520958053e30e82e
BLAKE2b-256 b00a0a0633e5675461b36e6f3540487d3a9cf8039c37366c63adf0f98b8dc751

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44e1cf466a8c320fbd2093769ff36bb8d91040684756440553317295b64260e5
MD5 21a9128238c2b1ce5c899b4878486d7c
BLAKE2b-256 2db66a3b6c17e13def08e39ab081c1dd87ba25ebe6005ab6b1413ce4b1a83aee

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47b9103c4619a44916def6d84a11ce2fe7d9b99e4392070cc3ca6891b1a852cc
MD5 cd40142881b9d5a657595cbc43db3e80
BLAKE2b-256 2ffdb78a193c07f49ef5a463bfdaa6be02ce839e238b983bae4eda79c7506f96

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1bac01610a259c2ce997c8dc01cb398669e1178fe6ad78e930deb7a0bb35697
MD5 9f155b32f850803bd3e9143c7a8d462d
BLAKE2b-256 ad5a56cee87b1dc55a2b28c8baf890f349059f5ff04fb5813fc313f5d5d26426

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b81eb17aab0881a8a824638505c17be0defa00cd2a18a65d73a7a5a4de715cb
MD5 d951eb6c263b113f71563361357c463c
BLAKE2b-256 de90f4f6a00d76581c37472e30cfa6097d1ebe941be129df234faebf03cc14f2

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 704f1793ecef17168fbb0ab03c474b3f5214368078c0a12baca03ec219272a77
MD5 4851c45c56c51b6e8150fb09a30aeabd
BLAKE2b-256 3d9d63595d3a9b331e8957e71096032355fc8c2b0843cb84e02fc609d275c427

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ee9e3a4b64ee9f899b0c941df4d1683ced8a6db36e3186ace76d863524d34e23
MD5 a7e06b5c2c364107f5e39ef7421f8be6
BLAKE2b-256 ec4c288ce47ca77012247a15eb295432ef4ee053b44acd186e691d50f3828b21

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 09a518c1ad663a4afe7b29878d3c151c3102e6667feee14f1620999d944bb19d
MD5 c45f42c7350ced9e577edd7e5f59d3c3
BLAKE2b-256 c4be25d703dc3eb7db6940cb8f1957d890ec7c0d41bcb9e9c2e3e302fb0c6a34

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62493117c358e26072b4e06e98257d7c43c8c3dc33a3ac1654fd265df979254a
MD5 dd891aed0dfef78cde2a6a0c670aba33
BLAKE2b-256 f8ee01c6e2b552a4a825475ff6f2bae1bf81ec61f48b7879a6ad2f6494d2a9db

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f05103a33511eb5ebe9a38b3c4e4781c60df07cf4f7fed2472cc320492fe64b7
MD5 59b6a1e77f0191fc74248cdafb4a7cbb
BLAKE2b-256 a709638cb0568d6f357402a674a7744d7ed71f441016463ea6dad17f6a5dabf1

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 332e0d5beed94b60b0f92161f08d7acf4da599939f325297a456299ddae7f077
MD5 bf3e0c036ce208b4acaedf8d8e987bd7
BLAKE2b-256 8b08f8c3045449ff16735fef2cfeb248649be6c0a90c4ed87f984ae2dcbed781

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45b37eaa9d983c25ba1168a3d30023bace94215eea984a57218143affea8625c
MD5 2e32b180142329a3fff86d277ab7efa9
BLAKE2b-256 5572dcbf05fd0ac2bda0272b1824d1a52ea274023e333c9ddd92f8c0e8e14a9e

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 904e1ff629972a3bc621a6106b40d9e2d684d4414da0e322ae33d2fa1165cbb8
MD5 432645879c7f8af47ee44768f4b79b32
BLAKE2b-256 8b657b08eccaebbe4142465d8d47fe3bb74d7756b98622a77f7ef61aec6f0d6f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 278b3872e3718bcaf11f1f50717bc40d97d68d43bcab8f38acb74f67feb6a727
MD5 10edd0b6aebb7e15f19b9483585f4722
BLAKE2b-256 46033679617d635afd2555686f22e7aa2a64de871adb8af301fb1c09e86efc53

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e9400f41c1d144267afd827330cf349e889a6c60f0c8bc173686ee9d8b5c4f6e
MD5 3abb01414d96e725ec52e5f674e98695
BLAKE2b-256 36c3c76b2cd35e71ea0bf86170f50bdab50b6a1496c789eba7e4176e07e7d92f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9141911e77545250ffc4eb9959f68f5f35a906ee902ef254ec15682995c67a9c
MD5 01b1f29b56f73a72b813cbd975f597f2
BLAKE2b-256 5fc2591dbfc3d64ed0c1f6a099e87c6df873b9ab87791622f4b379127715c8eb

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b92e8e14a3a38a5b168bdb478a162b78a408ca530fcb993ed300261862d21215
MD5 c602994e562da73f907e1c7c1a24695e
BLAKE2b-256 002c478ed0894eee3320fad742e3b7e99a4aceab6d429131989e2591559312fb

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1968f6bb75b12ac497bf730e64dedb67f6ce886377d736be031f960a042fe86
MD5 b1b8e635bf28eda13ef38b567fc5737e
BLAKE2b-256 a220e23d59f3e414df2d721ccca2aad6f0ae186b1ec22dda76015ff682b8185d

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bc6a56cd88fc746ae9e05822ab24f7918c37619ad634ae7ecc69b218320577a
MD5 e2bdb68ea99a233cd8ee3880911d3b48
BLAKE2b-256 e6d0f94d25aae5f099839b936ecc36b84250f40a97c33f3d5c438d4e33b3b0e2

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d55f53435a252c9f910c40d7cc6fb829ef3065a46d0bc9510e623d694286f2d1
MD5 e25d7e6e10e09984f65514a0282bc8d9
BLAKE2b-256 0e9601b0f1ead1a6d702c25c21953df0f350bc172b8bf9e2f60f1825b8825c48

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b05eda7a187c287b385532646aec2409a28f0579edad6716bbf565ddbdf9e289
MD5 1370a60c256a415a5cbc01dfcf3b1cf9
BLAKE2b-256 9254445347a3e42836abbe6d9eebe8e428e37aad7d2c4c44e278f30cb4cd107e

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b7ef259d07814053758a230c6921c7bbcfb4a8bfdec69b8f83c2554053be9561
MD5 a25f68c4785afae9e9cab15501243698
BLAKE2b-256 f6e22fa61b2be937b1ab6975b91e3aa61141488eee16002ad037ceedbcf3d689

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.8.4-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.8.4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 606a4bcdab7d2326c216543c62c7f3bc3466c701b13b7bfe7d57d5975f55676d
MD5 5b3d1a25236fff808d206f0026892536
BLAKE2b-256 cedaf53e7f0c29a2d67ea0daf4b955727bc446ebd65b55f579a11621f77080ed

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