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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for passagemath_graphs-10.8.3.tar.gz
Algorithm Hash digest
SHA256 35eef668e60b478c4bced66d74bdf89ae00f82b6aaac9cf634380dee7edf7b78
MD5 3af0fffa3706cab2cc203395b222d7b6
BLAKE2b-256 467cb71dba2cab4bb2de076dfb337f1623d1eeb406d98827d00abb161aa33583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 efc096df79cbf2a40f6f08986dec300e098b6389e0677bbd31a0dd8b9ebb7632
MD5 578639203ec6dd6a14378727f9de282e
BLAKE2b-256 0dd2c4f6cc377ed513a1bb09e9a2f3ef26140bd3ad9621811d229c7e420f8674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3d1cd6f002ebc44f1a5f06e08f73d012caa7af11806586266a4fa17a612c33cc
MD5 af4ecb3de875dc31d4d7bec1470ab226
BLAKE2b-256 b7380018e0471814e948461f26abbcb80a66ab05dcecbf6403eddea5a26d61da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99f5448f7cb3038d3cefd98753a6b5be522206f7526299276f4efd4270c3bbee
MD5 d7ec1b44b54c52453303846bc083c19b
BLAKE2b-256 71dec36089b4d156e48f4b0326c6decfac972f5616b6a4d903ee57896532d742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d7f13f84def6d57ccd6f8e0e02d828c5af6a3c378b3ae8ef25f9bc813dfc819
MD5 4a16c88d6c6eeb36da18edb4081cc49f
BLAKE2b-256 677967248ebdcf41eed82eccde83d8109ac739b8ee00dad0975c06711e4a05e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a8ac6f6e1fcdb20d155f550b7ff6a43bd53a2f686e902ddf641942abb73b01d
MD5 10845e7e16b9b0e4988c5d1a16152158
BLAKE2b-256 fc21d1e68f2c892dbc184095ed369708403db1bd0079b09e50ddedb657c443f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19922d02946dfb5295c9fdf422b837112bf965ac81f2ef43e5924e6f029560d0
MD5 23920595576db137bb3be55de2e08ed0
BLAKE2b-256 cbf4f1abef0cb21baa4fa2e3ad77d8690a2ae6ef4b5331e151021cdb24a0bc1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bfbce0e4c6f85aea4ea7693c78a2e5fa9eb6cdc84b0f5dc9331f465ea1071a36
MD5 c5c993ed1767f1ebd66e3f2b6a970ee9
BLAKE2b-256 6e083126d830aece0b5e31860e51f37597f49e3703bf6417b7e923f1b7f62e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 687cc38009f4a7469d19f4853bf9a133d036c6a393e61f8f3450b31a9552859d
MD5 a2cc7a453772d898263390076da40613
BLAKE2b-256 380c0b521ce2c59bc880d483f23b2b01c8be97dec8e4f3b795663a4c3d09d53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c2a552e4b5fa677acef7689bd6d933b988de9a60f4bf8a5c96700a8f12e3d8e6
MD5 35067274285b28c67cc4e5590e61c1cc
BLAKE2b-256 e93b637819dc1d77397acd99a5a6e2b174646f32cd620ef39a1c82f73535c2c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 753b4815ce5c80199e28e952fbb6ca573d684f01d07307da484371817f60c79e
MD5 6e4ef71ead1674d01c937d360df2f378
BLAKE2b-256 d27ae74b8a4c3033d64536fc33129494a36feaa8c654f2bded82e64ea2aab74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbcfc152addf7cba8bd43c14139067c3b92ae60b9c18cbf2df9f4de75f611f30
MD5 7a91460c3739172a0610609a29405754
BLAKE2b-256 c9a6112a93f9759af0957cc8c9feb8d93315a179ffb4f1642448bf83bbd6de1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4024c912648bc720c4921ec8264c0e05b212ae0efe50e8964d57846bb2f6ea2
MD5 dd4ed6a9d5cc2a77070bb580829fee9a
BLAKE2b-256 7182d3b2ef6073a243165be7e49e02f57b9aec59b046b3b4bcc83cef97a587fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a32a8dd16ab75edf45decb5338bd6945b727ddb787dbef9f4e608808b83895b6
MD5 34896c407e9a337e02f5aef2941add0c
BLAKE2b-256 1d607912f1fbce1c450de3f29f683e2a844717ef5f7dd3f1a6ee06b357955444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f74b15ce59060f8a72310b1d987eca355299041c449fda54756b314a3c950084
MD5 4e945383a6eb72e892a3f3235c0bf833
BLAKE2b-256 4e4addfddd923080b2ba15dcd01f55141e927b6876d218c85008069358575278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c4495f8f6a01cd5df104bda9f83a16f1be12b9191b2aa8f9d36e7277f7075f1f
MD5 af6cba86fa1acf2d71b3b476e13f6c95
BLAKE2b-256 8efb1248240422df035f3f99b713e91f194b3dede8fb9894bed556fd866177dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 cb2460872735646ea0bf92b17fb0200f037af73b4e7e2ba300faba54c803417c
MD5 30dc387a90e13466b60b247b71b86474
BLAKE2b-256 d34cf454f034e4ebb5ee5a111d0fb33ea0a3b54a66d5ff32f67e0243028ca073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d483dd0c24a74bc9107b6dd7a6485978443f9985489ea95990b58e4b5d65409e
MD5 3d8a2a49d434c242e5173f77b5734986
BLAKE2b-256 1f4ba7dfe708b0a0a6431817038c3e2a50d29aa59e2c8b14cbecd62326d73da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 813790d406772b923b5d0cdc92d2aad686fdb1de0cca517f9ec2d723c4d72db6
MD5 0ccc9007c44ed99e75dead609f48f14d
BLAKE2b-256 a33eb401fc07d268ce2c0b931ba304549aa4db903b32a0fd80266943b7097302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 245c65af1944787e2979a7ec58f046a3f59711d0fb2fa735937fb308d885be23
MD5 40da8edfea87f57e2dfebb7fcb0896be
BLAKE2b-256 6a4907fca30ac7efe45c385a907977ab0cbbffc70527811c7efcc934a21e05c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c1df227ee737f7873ae303bd5ce28437eb218576303a3bdd371de01d8c2f7e4
MD5 13e549ec1b824c582e44875ec99af2ca
BLAKE2b-256 1e02e5c2ddb3cea2ca924fe50338523afc02f5f9f7a60e35aa3531fdead10fc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b9ea6d738bc56b664cfd60d963e34848d723a40b4facb61e5404d443d891c17
MD5 1f4c79001a5150633abdbf47d15d1c97
BLAKE2b-256 441f6d7463091831b08e7686fc0a03707077ebf919e06c253fa0d61d2040575c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae386c000a6e66f2cb3e281c981bee6173cc75c18215ace2a62f1f2a49824a2d
MD5 10903a0b6e1065995b141db81a87e606
BLAKE2b-256 9a5ebf93f6ed7ae41a0a7394a33624772c12b0a9ad057891e2864c44d7486db2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3c34a5043a75c441824bc31bd6fa54391d2703b4037871af4915f1d088224a33
MD5 fc238c43c40d3d9a39beb40f4c643f78
BLAKE2b-256 b01e41d6095e96305871e5f4eeab94c19b84472e7e8744286887f16f29f9d9d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b9d9b499f9a52138bf927ef60b8d639e19f2090987def7963fcf391ee2a3782c
MD5 55922af66acc10c96f6877b4e04dbdd9
BLAKE2b-256 8bc9c2bcf222a4f6c443b22c7b978d887288608dfae7bb80fa5f64480bbef46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7c9b95ab98c5be0458e42154ae5cecc90816ee9c5f3e869c9000aa3a841ec8bb
MD5 db98c275f707caa9fc9bbc4feafa3ccc
BLAKE2b-256 354c566a8a1b4a25fe009e5e1e0d27f2c176cc5a89521bd92c399c29274b13b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6100ccd409fb0f6e5b46d04de07e9108b7d3e70439073180b34cba0b20a20d85
MD5 1aa9fc9947d5f4e92bdd1e4fed0e1ea9
BLAKE2b-256 4e9cb2cd46d53d77e8b816ab6b8603810015b50ec902999d725c7e9f362c6613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b46f381e67a62b5c2cc7cb590d97bc3b0589515c3b303e1c273fbf835cc6677
MD5 adc7ca5e42cf7bb4adf2c4a41a9b051c
BLAKE2b-256 d7a65414491c30f12d08c1c00b3b7db819384d0a77b74ed095519811ae65fef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfaede9b30ac67ce89edda7c162488fc770783a7f9dcd8c8a5fea4f8315defb9
MD5 0ca4e341400e401ff5ed40bfe5768d80
BLAKE2b-256 7e8e7ca6395e78eb598faf526d4fe43c737a2a15bf703e5b408db273486757d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eacd6ae9ece5df1b5030320492bb55fcc5b7e65ad93cd7857a6cfb69c526e513
MD5 dfd1372c76c31e237ae3dc0cd7d740d6
BLAKE2b-256 579c4027f508aab1a164ec51b5433f2e6b073556389b23b26afb9393c051b750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 163afa6b07ffdc5d7f45b52a2594f69a634087c3dfb92956f60477ed70bb6780
MD5 1ed6ba29eb353151eb43b9fd38fa3af6
BLAKE2b-256 13654b0876037a9e8974f98c57e67bddf744616a59596c771edece94da5f7dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ee3786f814381d25ca48683545ba7d7d848a13453a7bc5258b0243597593b302
MD5 d5143d80c40504b3b7fd43ca1986e204
BLAKE2b-256 d4a89ba7184218f2ee020b11f66c3b3b6a84e6094f8f2f19690a6132aa831967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 12ceae3cd0204cd328533a0f43d3ac3087acdb9ed76b04977b148ef73ce8c997
MD5 55cf1f125e04983813805a52face57c4
BLAKE2b-256 cfac657b9110ad92cd4f9a08ad94bbd15aa70406ba629140359d515f7fd6f9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 628b019eb7bac071180086e18a315de4caec851512d96e85df34b9ef766dd1f9
MD5 91ab795ba77e288254fd6bd947df5bbf
BLAKE2b-256 2f7309e31da73053a13eb76fd2c8a8a66dbd4e86ea4f2e385b35c099a967efc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a9f842b3dd87197c3cb981df4f50a850278e5bc8a4315ed8ac4f3189493b554
MD5 b7e2f4418109ac6ef38a51d407540412
BLAKE2b-256 1859e6aa93b1fcb42a86a0fe90d79beaadae385b0427a0bce072d277b3fa36ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0167c2c3dc32cff4e5aa7632539ffe8bf861431c560534226c6fa5c03aef4fe3
MD5 0e421ee136ddad86eecec084370b5dfc
BLAKE2b-256 3f3ed4c62c7c3c421951f7910ba3dcad443c41007bd88d1ec328913dc35a9cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa5c704eb45b148b2ed4b9103848f8feda5b9d5c5b72efe961379273ae1ced39
MD5 2a7f3d46db500c8dcdd48ce541762759
BLAKE2b-256 5706a87d31f010b649ff090da1fa5c7e09f32d6159dcdfacec765999036dac75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e0e0854191b6f56f849ce513b80825b01bc085dc370381dd31a359ae38d358d
MD5 b47ce2be4fa69514bb7b3432b6f17023
BLAKE2b-256 2e5d1edec480b8ac4febb69266e8dd4c76a644308d44c82f24194751f207a33e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 227955b48e36f85d2433be3de8f26fb9e657a33f67a5a6f23ee4eb2ab410d748
MD5 5ca54d9973b263fd2329be1915fa49c7
BLAKE2b-256 25cc9a903ee71f4d0b68d471d3a7da272e6509524b87fb49af4801ff66f29f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c23044446d51cd10ad9b057db0914555db571a0c95a8a19c4501b8d0924cce3e
MD5 170c3830686bad6008d4234772949686
BLAKE2b-256 4b2cbf0ccb58d71692e9db6d2335f21c1f28e88810ac8fcbcda44dca263c2a23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.3-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3c71268c94dcd42c12aaa1e76df4596fa610d367ce75a13a4dab6a2f3b52a4d3
MD5 5b750126eb4d19c8d0eb3b694570281f
BLAKE2b-256 c59cc8dbd48300f8d66a1c48b1268b396cfe719580712df135b4dc989ee26c8c

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