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-2025 under the motto “Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, and MATLAB”.

The passagemath fork was created in October 2024 with the following goals:

Full documentation is available online.

passagemath attempts to support all major Linux distributions and recent versions of macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or virtualization.

Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x. Python 3.13.x is also supported, but some third-party packages are still missing wheels, so compilation from source is triggered for those.

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 sage.all__sagemath_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 sage.all__sagemath_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 sage.all__sagemath_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 sage.all__sagemath_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 sage.all__sagemath_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.5.49.tar.gz (2.2 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.5.49-cp313-cp313-musllinux_1_2_x86_64.whl (36.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_graphs-10.5.49-cp313-cp313-musllinux_1_2_aarch64.whl (34.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_graphs-10.5.49-cp313-cp313-manylinux_2_28_x86_64.whl (35.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.5.49-cp313-cp313-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.5.49-cp313-cp313-macosx_14_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

passagemath_graphs-10.5.49-cp313-cp313-macosx_13_0_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_graphs-10.5.49-cp312-cp312-musllinux_1_2_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_graphs-10.5.49-cp312-cp312-musllinux_1_2_aarch64.whl (34.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_graphs-10.5.49-cp312-cp312-manylinux_2_28_x86_64.whl (35.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.5.49-cp312-cp312-manylinux_2_28_aarch64.whl (34.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.5.49-cp312-cp312-macosx_14_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

passagemath_graphs-10.5.49-cp312-cp312-macosx_13_0_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_graphs-10.5.49-cp311-cp311-musllinux_1_2_x86_64.whl (36.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_graphs-10.5.49-cp311-cp311-musllinux_1_2_aarch64.whl (34.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_graphs-10.5.49-cp311-cp311-manylinux_2_28_x86_64.whl (35.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.5.49-cp311-cp311-manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.5.49-cp311-cp311-macosx_14_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

passagemath_graphs-10.5.49-cp311-cp311-macosx_13_0_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_graphs-10.5.49-cp310-cp310-musllinux_1_2_x86_64.whl (34.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

passagemath_graphs-10.5.49-cp310-cp310-musllinux_1_2_aarch64.whl (32.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

passagemath_graphs-10.5.49-cp310-cp310-manylinux_2_28_x86_64.whl (33.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.5.49-cp310-cp310-manylinux_2_28_aarch64.whl (31.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.5.49-cp310-cp310-macosx_14_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

passagemath_graphs-10.5.49-cp310-cp310-macosx_13_0_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

passagemath_graphs-10.5.49-cp39-cp39-musllinux_1_2_x86_64.whl (34.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

passagemath_graphs-10.5.49-cp39-cp39-musllinux_1_2_aarch64.whl (32.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

passagemath_graphs-10.5.49-cp39-cp39-manylinux_2_28_x86_64.whl (33.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

passagemath_graphs-10.5.49-cp39-cp39-manylinux_2_28_aarch64.whl (31.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

passagemath_graphs-10.5.49-cp39-cp39-macosx_14_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

passagemath_graphs-10.5.49-cp39-cp39-macosx_13_0_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

Details for the file passagemath_graphs-10.5.49.tar.gz.

File metadata

  • Download URL: passagemath_graphs-10.5.49.tar.gz
  • Upload date:
  • Size: 2.2 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.5.49.tar.gz
Algorithm Hash digest
SHA256 531c654f78555cbb1e1343ae194244200e1e1e6c09680ce785e0e8a93320a6ef
MD5 5356757916e01abe6d63ce887ca7f46a
BLAKE2b-256 f93c008e5da8b68617e412424d63986c1c29dc41f7c40945b8be29e34530737a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 972c777227f4f609f3eb491f129838bfacc37aee579eba243b94d024d2b79059
MD5 efef276126d05ad1a933791f7eb86b82
BLAKE2b-256 8b94b086ce8d56e9a880f4b7321e5e73236ebf8a376cd427842c53fd492a92c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9b6b7cf479905ae80a76db3c363a6097ca2754757a705972912a69903c0b46d
MD5 a9f471cdf50e6d7c9e6d0de93856f4b1
BLAKE2b-256 075292c4dc905928ee9b9eed75a61cdc518da181dc1e28f39351e980ece9045b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05b30cda29cab6c135b0051fb2cdc465d6afc5ce992a8965769f0097361bf257
MD5 7062373f1a91cb2b05353328a5c1472f
BLAKE2b-256 1e699d38016cfb0f7b7c84d61a45d84e3cd50ef1a90f3c73a2cb59c658e32b9a

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27b8788c4077c1654a5a3421ee493f238ff1677289eca0976cbed60d857fddd8
MD5 fe1e8bb59d7f34ca3dd4fa858f309b1a
BLAKE2b-256 10331fe2f795591186d4bc0f930fd69fdd0695a3ddf1f8302789321ebf181efd

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 65ec0ab7835df061f8a77d4085a091520508d4f59f4cd766ccb5632fd065882f
MD5 bdda2e49a910110c11cf7f2006f8a48c
BLAKE2b-256 2419c96a940664ef6d152559cbfe2e0bfa8ee62dbbdd0f1151f3afcc43c843fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7251546e4e9d0363dab1da24a6d24062d625802b5b9931fe9d6fe0caf59cf6c1
MD5 76bd4827be09247b57a98e201c5283b4
BLAKE2b-256 09282873d92253030a9dd66cc7ff6dc37a96a9c54fd80a32685fa3cd99ee0c4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87533c4d9cb44b97cc128d2ad3c6304f23d3bd9cbc946c3f062c79b4467dec09
MD5 8adcfccc90d5e840e604bfde00197ba7
BLAKE2b-256 697e28fbbeca91f8b7de2dc0dc830bf44b91bbd127eec647a82acf939f050e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16a7172ecc0ae923bb124bb1806dbdfc7515d4862463338457d6a936b1b53f9e
MD5 b886086f6ccf9ac7dd7a3d4445e7ed22
BLAKE2b-256 dda388473dc7a60cbe55acd376c5d9d70b89d5e7e3b0aa1016c2a3b4c942581d

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21aea3d3477db56b11d760a947c26b816fb183358f499b066aac249bf449fc3b
MD5 e9b12d7564b1aef03ab7e26e70e14a4b
BLAKE2b-256 a5fbae1a00026d21ca84b03e28813c5a68bc3b4baf29546fd186e527fa345d1b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 728dd7499a7cb967cd0584e4f96ae3aaa3f33a441ea86245d3ef19539111ff35
MD5 866b5e7cefa7b66bb85fab025ecd4f56
BLAKE2b-256 ae7394be1797d585d2c198fe7babf827bc158e212ef8bc2739616929e65a4636

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 01f55428e02ab3d0d5298722ca011db702033ea36d92cfdba2caee2f2f9abb00
MD5 55e0bba1460e92c1d269e2be6b4e86e2
BLAKE2b-256 ae851c405e32bb86fc16d4822239f7bebda3d8a48b1e8f4688dea43146ae2e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e25a13caf83d453877a371d2563c3c37ec543bea0bae1371f2686f69dd1b8b80
MD5 d957b4bbe28657beff757dbfcc4b8e0a
BLAKE2b-256 8a086923aadf9754d744f619ce4a8a415e4c1d909d2232ce93bbf8f7ef9b6505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a012801cdc80dda97f6f037be4de338cb1bb551140959ffee97abf99b48cbbee
MD5 516bbc2305bcf75d835d4ee3f202a48c
BLAKE2b-256 f2c25a2b64c96a3f21f305d1da99c60196c9ae42c3e5d29a531e6190b0a4aab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d231c9c734dee499b7a3d6a99817dcaf648f960373fddf2436f25bb8ea0ada9
MD5 395a137a2402a1fc082d02f497d6e150
BLAKE2b-256 28026616bb6b823cb3852d04fc8dac49e60b4bee9432174691c13b660a0e61fc

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43f091e966120e00266b6308082f6fd75a8a0111060ec923576e019c132f6cc2
MD5 e55223b6578c4977f007ec52bb2ae544
BLAKE2b-256 7ab098cc70c44d773484943edf2c893e2cd471db536666148fd705f72b0bf3da

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d32c02e56e2d09440800f26dd0b9f6cc465ecd28384020e786b4244b59ff3ff
MD5 1f36c7fd61aa7c04dbd58bf5dc0e9f7c
BLAKE2b-256 3a810cb830babb9799e0a5d2b17766d0f08c8f332584e8669c806bd3c629b877

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4077ae2d1a71566358d5c8cf6620e12cc638589abb8195711d2c82b0a6f2a4c5
MD5 091789c9b5b299f9d0e4e063a4cb59c9
BLAKE2b-256 5a7444c7b1f4e1cef77fd5813b568e8af753463f851c182a93eb095ad3d9bd6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 91bb222545104ea5e8a29f8eb6f908c932311fa973fc36998912aa2ef4a15a08
MD5 630c224e1738cd4831593c77a56a78bb
BLAKE2b-256 75ec9b7cbb7ad0d23fd7a66c7a04fe7938be411b024ed0bfa2a2b668781a4645

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a02aa8c01e0aac4d68121b96429f8fe1aa46d9a6f882aa83ed313781ce0680d
MD5 8ae74d4141740a440755182eedd7a6ec
BLAKE2b-256 dec31e284a9e402c6509d7df08753e975c0ddb32b19627a2529ef3ec3f39fefd

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df6b3c14f293925b860968d3025a6ac66058f1da4d5f5e07425a9812f0408b7c
MD5 1a9d23d32792df4370f596b5f193378f
BLAKE2b-256 bf42ffa338f19d1bb7c031ca75e6778585b2caa4e0677d0a9409341c03506635

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 585294754d98473926ab93c9239be22e11ea08a804f82959bd32ba7a0f703f4c
MD5 d60f223004dd781d3efcf3e465d7b0a4
BLAKE2b-256 af9a986dbf081a6649d907d77704765852bd6736ea2adb9d234d9c0571b0295a

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06f106039632eef6b86d14d6859668773183d3143f96c93096ef6ea0cc216678
MD5 1eb60898f8e5bd028b0a8d5f78ecba5e
BLAKE2b-256 c2663763d76bf15172d11a3693ae4cdda79a96aa1dafad2747af9231396512b9

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6a98fb8f11816f9a0e4e713f5b53163742840d75e5c34fe1fe5b9853dfed6dcf
MD5 ff37ae7e18e7717c1feaefb8b85fd448
BLAKE2b-256 0f2c2531448305cfb3b3ae0f3ef39e68cd2f91955824b2be60c011c9fed4168b

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7e95a7bf1b98fb6fe1472b087403eb11de6a26a4c279c7f3c4e067e0b6f98bc8
MD5 d26ee5763a68e1b326435bd3e4987880
BLAKE2b-256 0edb867fbd932496fc5a2b70a06ebfc1f8de9e9b617ffb546d2eaadbde8dd407

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5865acb188df9781be96fae6682f7ac2841137b975f336fd830ee6ecfc7937c
MD5 7df23f211023fee2ee9c9fc9eb89953c
BLAKE2b-256 51273c9c71a17200ead3feaa865e530f0ce2f115d79ab4da20d88008e579d945

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04e5eb8319c5de29252c54191b24fff2d6fc668da51b6db5774e79bc31386a67
MD5 7fc6b44c8ada25db207094391a83650f
BLAKE2b-256 dfe2e4d0d4dde5c1d78d340626fc6016a306f379040e94686151c9fb124d7137

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb3be5d17098641a2b893df0e7e4fd39d32627316094a1189ed6cba846ec97d0
MD5 0a82558b788e63f7113b8ca68f75f71c
BLAKE2b-256 a8d2274018fc5701b63ab420915daf20a35135af8ad51434fa3d59f7c9b67b0f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18d1fad66695450a903c22d883187f7c893715d23a3c091800cdca415bb8e3e0
MD5 b9dbdfd466afc924636702e97adfaa1d
BLAKE2b-256 ac400fb4401ecd5f23c8f60bb5d077e218c3efa626eac90f986434c02825a55f

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3233aa25bbe63352e775cefc694d519ce885aa20127cdec6dfd693fc9a1abae5
MD5 2b05ff6ef2c08ecce9fc83944d7740d4
BLAKE2b-256 d10843c7fe8f281de235d89fe618d6f4cdcd61cb8712829f7e5a843f5ffcc603

See more details on using hashes here.

File details

Details for the file passagemath_graphs-10.5.49-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_graphs-10.5.49-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 da2d2dad5b7632b84500b38a4db22f80a05542d8f14937348249b219909715f2
MD5 c2ecafdfab58ed2acf7b6c18a319d93d
BLAKE2b-256 6dd415de1eed8875cfb370d1a9a1ec96cb9153ae2094fe4d6b338bf18f08fcfa

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