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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

passagemath_graphs-10.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl (37.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.1-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.1-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.1-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.1-cp314-cp314-macosx_13_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_graphs-10.8.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: passagemath_graphs-10.8.1.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.1.tar.gz
Algorithm Hash digest
SHA256 4cadf729d6639b9503139085d96dbe168c1248d6aaa4a7d2a2a760d0a83d8373
MD5 677b75e11ded88e31c08af3d2d098733
BLAKE2b-256 0d5daf34c8ceb3bebd4663e7b5472ad595f67954da6b60ffa9083c8e66f672a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fbdb6bc11b0657a85e49c9ecdd7334f1aaccc48c1295bab41f79cce4cf4ac3b1
MD5 66d06df0396bf8c94097d303987823e0
BLAKE2b-256 1a271c311ddbb6a57a02ae20ca010b4732398ba579460dbbb0b3dc4511d3e318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2bf22d3909ec62b0330a795585f1df479d4dd280225af29390a510c62c38fd4a
MD5 07139a291b2630ba8a77bf5c3273a718
BLAKE2b-256 7df0539add9af680711e990d7ac4a2e1be4b25ad1b697f46de869682a171c5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c84f37e9436310def64d80290149248030b29ff6a57a4f2e981a89022661d4fe
MD5 f4f0a29b4b3909b745982d5efab8de88
BLAKE2b-256 4dfa6014176d7f2b5122b9f72d87847af8319bec58c6bc277855142f2f36749d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bea5b4fcfc05ea92678e6fadb15c29250df36509a3c336d195f66f4f27fca6c
MD5 7dc151b2873d5b6198cdb4f03aeacc1f
BLAKE2b-256 13137c4f6f370794cc6503b2ed9982ef507ec9505f7947b195e881f0c2b7189a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8d2999d7fae80094842919ee51c3300d172d73a08bd0e00ae676badee0eb1b6
MD5 1cdd3428e6788ad68df18037e13c8ba1
BLAKE2b-256 94e6f160ff8289ffb7c00ae2c006e2a0cab9e1263bb8e292e717491c7e6b3f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af49dfa9444aff884e54ed1971f66e6afac24527eb2ea2c96a0fdca5d2b2e862
MD5 77940e8c871ed746e0c3ead1e8033753
BLAKE2b-256 96dc2a6b5c3b0fcaca45e4f92a9147f65adf35edbccef1b6c7132898b28bb56d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3842a51fa5b9b011a3fe83887d5a3b2e3102b9066fd83e6f8c99714976fb4a27
MD5 3ecc61d7cf38721af8c2cc71a8c899ea
BLAKE2b-256 abf18a771e48e620fc5cf402d31e76f7efc853de5aab3373f71b3c64151ceebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ad813dbff8ed218204b50937a44376f15d7f2c7a6f90173d5c5c3b9a642c5599
MD5 2fdb06deb17ba7c0c38304589b7b0e5e
BLAKE2b-256 93cab6521d78495a2d8906fff1a596cf0d6267fe6b41185685a0cd80859f237b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dd4019572c4f69d5e0da3d2056acd534d05f34e708b4047117e740fa054e0ef7
MD5 42cb592479064841a983b69f640fb535
BLAKE2b-256 78582d93ae4d8f2540282688fcd62f6afb62aa2e19820ca614bfb9c435408f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f8f2ebdb16a1162b1f2547b64c0e81a4a75b280ed18038fbf8e83fef4d442dee
MD5 59e528d3b438b8e45d5db4bc5595e7ec
BLAKE2b-256 1808b08b6e7a2593427cf55c5354c521cc9865578470216a7d95c9f0a179fb50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c332f8b4cb00f69c90b3a550c42d4207d6e3be03449478f745f08a3b5c3b8b6
MD5 6b7266c2cc3945ed54667afcad707e5d
BLAKE2b-256 60067245b905b1d630fa9d2e2fc924666b43322c4af4328d023003f09965d394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70a33097e224fdf1899a8ff9993f757450f81a12e4c5b37b7e72d29ee5b4e629
MD5 1350cf5a394b95d5b54b7fdc89a59d6d
BLAKE2b-256 2ec129c9d4e379e0e23f1fe434d2860f2a12fee430f2f6ca74091cd434395369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 972eb535cdb027a9482bfc18d145e54576006e2c5ab088b2dc5834baf887144e
MD5 445cbbd4b30bb63c2ae7646e5981c04b
BLAKE2b-256 02b10cdf2b370bfc26d321004b7acf59e2b613c93de1c3efb2c718895c48b606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39ef398eb6fd17496ed6529c5946c00e0d8c82c4a4f10fe03896eb302e06e296
MD5 34d60738cd833992322d94d306c0b792
BLAKE2b-256 28c8361966c8ae54e389fad5aae3c7a01f2bee1e12d359a0cb645b162ee4f7f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 96868321573345ebb040dae4bbc13959dce64830a0ef83b84b5f27fc2a959e78
MD5 79919369215dffe32328d9f484b99e67
BLAKE2b-256 9e748ca41e247c02a076395f599420f750599e27ff76cfb18cc3ad31c07c309a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 83cbd3c87cf8e0609719ee7b34b2935feb76ef17e73a6ece900e985a36698f0c
MD5 eff0d73a0105ff9f3e3975b3725d9146
BLAKE2b-256 1c637e0164b1e3c62ffdc139714b5909149c669177de252cc815b7ad475e881f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 07b5b839a8f76bef0c7f6ad7f05224654fa005d6c37337e9c7b701b120d83a0f
MD5 5949728928e64a67c0a8ce4bf437459d
BLAKE2b-256 7dab152ea71877d89cfcfab1f65ff400b214f888090874a595708ad589f04f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fb2ea6062db46f88fd3507e3d03892dd8e7fb9eb1e86dba6ac4dda4f231d6df0
MD5 0c8616c5cb32cdf1cb0831f1b867d41e
BLAKE2b-256 e8de28fcaf865bfe4d6c2db89ef8415883f49bcf044f5e8f377c5b7c53b69d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb016b7febc6440edb075340687f1012dd6c4fa4d3e67907b743be7f0ce75a11
MD5 bc11dd9b4bdab93c411bfa0b111e4528
BLAKE2b-256 b08857b72b3015946656fb0b3fe28c4c24193bd364fb48f0b442a078de884f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96813bc00bad2afc9535378ecb28302d6945afcc8b06e08e05b9c87793a07a0b
MD5 bdf7f2b4290fc70c79b4c9edffd1a32f
BLAKE2b-256 26cece388046b22ecf34bd8fc95e5c8651f19d0913cfc48006bf80c2df14c3c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1eb3e8dd40d22b1c69c62e93fa6e96686233207dac5844ec98307f5a1156f97
MD5 691b7642824a5a1081b66e397ed75cfd
BLAKE2b-256 0803ed81387bbad3c283e6f3d7001ae81edfca674c6b9b64e89028626a892356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 344b7fa6df372e350c8b39e2066911f3cce36505468f9b4f58fabf78b68b65dc
MD5 321ac4baaac29a01a9d51b94e19d18f8
BLAKE2b-256 d2653fd4052a86b626762eb1b526971fd1fe57ebbcf7190bbeac38b740c37e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5503c2422e4929f99f81336377ecda89344376610e0c789e2f11e8cdfeffb713
MD5 d2dbd2d31f75c902be9c4a4c59b33267
BLAKE2b-256 7f0cc9197c22154736b4a6493229fb9ec57a031ad879da719fce7067a7d88865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 67c0b035881ab81b99d7094450ed0a19cbe33e3f0bb688c247b35fa0982a12ad
MD5 442a0be21ee33d80d3fb44dd3cd21872
BLAKE2b-256 f2efd9e905a07964d6f8393b2c6ce785e67083334b9f050296f58ee18f87a3e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5e1bb696c40c23c8d433cfeee65034229895ae52a98aa62278b58708b45ae36d
MD5 4a6153ab8cf0666cfea4c870128264bb
BLAKE2b-256 5d9110fc986b680331655425e3e2b8bf77c57ae4e32551062bbb3494ec939af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2edaa27a2c5d3e42cc3b82a98feae4640f7e2500177a26b4e21db2499759a8c4
MD5 d6fa739735ca7f109162adf68f27a391
BLAKE2b-256 95c18115dbaf35ecae6e004fa027b9386144507bc0e07ff5778a5bfcd8648d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 308b6d780c46ff51cd64301ecea70d084fabb397484ff4d6e047e723e50c27e8
MD5 a1dd679c43ef7bbed3f6c14bff08fd8c
BLAKE2b-256 76190c6de1a693819545581b489c795aedd8610a5b8b72aa636bd918e00f2b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19f4cd4fbe8b8bed50ec76776031d74df7cce82bd032fce42282903afe834966
MD5 64ce46f2fcd241a99457e58039d0da62
BLAKE2b-256 b9ceed68510add730c711010f9e7a359cc73d3cdbc89329a1ba315075283b271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02ad415e9e184eb9655dc49b955026a1d67b78560564be0507118ffae414e977
MD5 24c89dd9d68fa7dc029f819c4bcea303
BLAKE2b-256 f05dfae8751cfc5794dfaffb2ce0ed02511b6b5d33b714756923e132e87aba0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbc2c402c9fb15b74511a7738efaf6ac3d82e1705ee7fe9d79722a9062b3c35e
MD5 2e81521cf3a466ff70efa7b3a37cb397
BLAKE2b-256 85b8b0809efe269770c1ebeb2917dc091abf39183ea43839e51e34acf69e6cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2cb7aa538b6a718fae933cd86cb6a88478c216ffe9c030fda805291a1eeb4112
MD5 39bc6a1439fbf0e085ac4c9b3a87476b
BLAKE2b-256 e3eac20e9ecc8a90c545ae098721d6cebcde473cd970c09a5aa4855fcdde1556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 47ece7dbd2a5ef8bd6c7e4ab478c640062b2549841f9b6352a999ea8d30040f3
MD5 9068cc97cb0d4e8f8ec5df04c0470128
BLAKE2b-256 d036739e1c1758f0337c4bd895e8c78ded96e094797b278208caacf78d794c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8a04a0b5c8ec10eb10116e8eedf11749e87164d5aca991787dd58f938767c855
MD5 15cd09e3884fd898bd7810434ecaae93
BLAKE2b-256 bf3b10a24261600384fe2c57829083180976176f5594dcf5b01e271e92979385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aabb0c457d0cd0edb7ee085f394f51f42a1df59ca91a833c9ddaaedcc4e0df38
MD5 6e6c5f44e10a2d51e979f3e3b2468531
BLAKE2b-256 88b18d3fac04801787539df7ffbbb7dc61d8000970d611e347143b2367e95744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df4e6a7528c3370367b5277681ca62dd9e4e0fdb7ad09190aac3b648c965d3ab
MD5 406bf30fee80240be382088dcccbd8b6
BLAKE2b-256 9610b024c59e3e57d3ff35acb27abe5e2f54c6d6f51c50ce407d06c3cbc9fc4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2440dc922f3b30f77ce70c542bef2e74359ec784e53094cf917a2ff16fb40390
MD5 43271536d16acd6c3833cfafb312f7a8
BLAKE2b-256 5ef801757f081a3f5e80655f0ef4fe5b8c2ee550a6b774c6f41b314620a740e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59666404529d0a5cb6faef4c701ac25426f42e0938d80234f3f779af01b6f517
MD5 9d01f7d265857c66ac5dc399206ccd17
BLAKE2b-256 635d2758eb721db6d3c4e9ddf6127822628d8b846947bd04624db838a95bb213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcb447dc14b05cf2d8aac0eb351d4e4da61236d3c31451b3cbc3bb91297ce8f3
MD5 a69c70bd76a9056a0022febc60428ebb
BLAKE2b-256 3656fee15a7d3e5e017b73b21bd9534f80a7a26d8c75609fcfaf12e02ea1cad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 621fbf102521e4d270c5aeaad8eb6757acfb590aef54a7cfaaf4447e38758c6c
MD5 8ff8cce0a4b98a99f6eef124155e1999
BLAKE2b-256 4c0d5eefca9e262c9217df062ebfffb645522bf0c0105e7d2bdff96eea6eb26c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.8.1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 d31c691c5d8c577c09b38a9b070d4176cb935bb9df070163e03241fd7326d382
MD5 e74e6790e8b9c43a75f492eb59e56fd2
BLAKE2b-256 cade5cf87449c8a62abb0d19983610ea325fb945da104581309c8864cbd8f045

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