Skip to main content

passagemath: Embeddable Common Lisp

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 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:

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) 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.6.x series are 3.10.x-3.14.x.

About this pip-installable distribution package

This pip-installable distribution passagemath-ecl is a distribution of a part of the Sage Library. It ships the Python and Cython interfaces to Embeddable Common Lisp.

What is included

Examples

Starting ECL from the command line:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-ecl[test]" sage --ecl

ECL (Embeddable Common-Lisp) 23.9.9 (git:UNKNOWN)
Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya
...
>

Finding the installation location of ECL in Python:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-ecl[test]" ipython

In [1]: from sage.features.ecl import Ecl

In [2]: Ecl().absolute_filename()
Out[2]: '.../bin/ecl'

Using the Cython interface to ECL:

$ pipx run --pip-args="--prefer-binary" --spec "passagemath-ecl[test]" sage

sage: from sage.libs.ecl import *
sage: ecl_eval("(defun fibo (n) (cond ((= n 0) 0) ((= n 1) 1) (t (+ (fibo (- n 1)) (fibo (- n 2))))))")
<ECL: FIBO>
sage: ecl_eval("(mapcar 'fibo '(1 2 3 4 5 6 7))")
<ECL: (1 1 2 3 5 8 13)>
sage: list(_)
[<ECL: 1>, <ECL: 1>, <ECL: 2>, <ECL: 3>, <ECL: 5>, <ECL: 8>, <ECL: 13>]

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_ecl-10.6.42.tar.gz (21.2 kB view details)

Uploaded Source

Built Distributions

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

passagemath_ecl-10.6.42-cp314-cp314t-musllinux_1_2_x86_64.whl (55.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_ecl-10.6.42-cp314-cp314t-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.42-cp314-cp314t-manylinux_2_28_x86_64.whl (55.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

passagemath_ecl-10.6.42-cp314-cp314t-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.42-cp314-cp314t-macosx_13_0_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

passagemath_ecl-10.6.42-cp314-cp314t-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_ecl-10.6.42-cp314-cp314-musllinux_1_2_x86_64.whl (55.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_ecl-10.6.42-cp314-cp314-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.42-cp314-cp314-manylinux_2_28_x86_64.whl (55.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

passagemath_ecl-10.6.42-cp314-cp314-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.42-cp314-cp314-macosx_13_0_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

passagemath_ecl-10.6.42-cp314-cp314-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_ecl-10.6.42-cp313-cp313-musllinux_1_2_x86_64.whl (55.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_ecl-10.6.42-cp313-cp313-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.42-cp313-cp313-manylinux_2_28_x86_64.whl (55.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

passagemath_ecl-10.6.42-cp313-cp313-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.42-cp313-cp313-macosx_13_0_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

passagemath_ecl-10.6.42-cp313-cp313-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_ecl-10.6.42-cp312-cp312-musllinux_1_2_x86_64.whl (55.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_ecl-10.6.42-cp312-cp312-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.42-cp312-cp312-manylinux_2_28_x86_64.whl (55.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

passagemath_ecl-10.6.42-cp312-cp312-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.42-cp312-cp312-macosx_13_0_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

passagemath_ecl-10.6.42-cp312-cp312-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_ecl-10.6.42-cp311-cp311-musllinux_1_2_x86_64.whl (55.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_ecl-10.6.42-cp311-cp311-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.42-cp311-cp311-manylinux_2_28_x86_64.whl (55.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

passagemath_ecl-10.6.42-cp311-cp311-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.42-cp311-cp311-macosx_13_0_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

passagemath_ecl-10.6.42-cp311-cp311-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

passagemath_ecl-10.6.42-cp310-cp310-musllinux_1_2_x86_64.whl (55.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

passagemath_ecl-10.6.42-cp310-cp310-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.42-cp310-cp310-manylinux_2_28_x86_64.whl (55.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

passagemath_ecl-10.6.42-cp310-cp310-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.42-cp310-cp310-macosx_13_0_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

passagemath_ecl-10.6.42-cp310-cp310-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

Details for the file passagemath_ecl-10.6.42.tar.gz.

File metadata

  • Download URL: passagemath_ecl-10.6.42.tar.gz
  • Upload date:
  • Size: 21.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for passagemath_ecl-10.6.42.tar.gz
Algorithm Hash digest
SHA256 6c7b237b92f5e62acb49e9fa79d982fa58fc763f3083ff529590bea2c664cc5c
MD5 10b93953c5749f744947d3ecfc98527e
BLAKE2b-256 cdc721a4893e2fd428f10b0c9b212b62053b3de69188b6769a11d09dfec94d22

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cefd32e2d218e2768e3832a97a2ac707996851de658311853289a1a55f7fa52
MD5 9566615384a1165d25044521a03f986d
BLAKE2b-256 5b04f737540d58e623dd024d68ebd15c93eebd6e4c0348326c1400265d7dcb64

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61c25b780087e54d578d786822614d2743f945ca850ed4d0609c8d724a497ee7
MD5 93b962434413a940e7cf87a57975828e
BLAKE2b-256 3c16995f33e3ebe0bd6ed52cc265998e18ff204883f78216cfa2a780a08e38c2

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54da58ee60ff59bcbcc4fd9221858d2c9b4472a665b8e63af026abd56db5fe00
MD5 da916361a6e0c9e1e2dd8b4ff080b8b7
BLAKE2b-256 733c2f957cc69dfb8620a40c909e1e5df8b56c8605266851398f6d4d6805066c

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a5af5eea1bb413e2caa1f27e6c5563bd0c9625f20a9dcb5f720c2bdfb1b1f18
MD5 ccb27c31b97c40b06f1add18ccb81fcd
BLAKE2b-256 4be099b207ca0c36c1a48078dcbbcd2f74bd5a1a87f7eccae5b52f06be69b3fb

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1a703250d4f9cc0acab8a88f224e7d344e078879b1483024c79c6470bd308f51
MD5 66ad2b651c43b65a6642dd567815cbc7
BLAKE2b-256 4655ef464d8e066cb54fe951dd8f789784c624e31720ef18a98a455cc64e5357

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 86205a6fa9449e3ae2d868989622a6403aa8a429eea5d2fe4b84adab3a640ee7
MD5 85e0e05b91136cbe6aa6e3474377af33
BLAKE2b-256 62d5d08bd9ad3e3bb1c920aba0877b5c55c4652a46389287f1c0769ce1c6ce24

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f65f59982ce21f9b49f6fbc0067a37b60285c7b87527b8e4abb487258ac383d3
MD5 e05a2805e0653ba38a1e5a6711c338bc
BLAKE2b-256 4b8bdab0ff8934093cb8a02e287d3122f3e34d318388e54ac1acffffc38d8c1c

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06baf6667b3263eace8f32e1ad414d92435febbf1869e59d88e355b9ab5701ab
MD5 c21340f86214c55cd9215ad702adc5e7
BLAKE2b-256 4159669403addc07acf128cc38260ffb74b05babd43fd3407dd84efca8fc39c6

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d9b65810e8656748a14366a6d160e8b2e32e70f40c5a7b4c06cfb5a6a9ac5f5
MD5 2a30b4697371d317b470c92b53083818
BLAKE2b-256 5f53b72d57087a05e3a67a265631d2a6529a2c910ead2ea9f50a3f4129b20fd3

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a4afd232944ae1c640997875f86de3ed3572c36f5a0a861b8a5e1d522427b8a
MD5 490fd35f88729f92abf990fac751b177
BLAKE2b-256 efa88de2680ff733519c4ccbb02474b6791ce9afe95ba5fe778d10d7523df258

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 dc19c4843d574d9c4aa396da6b9826a0367cfcfeede09c9cbc42046ed8c4eaa7
MD5 bdd877b525e3187676647bf0236a0de9
BLAKE2b-256 61e7b3ccf05bd24946950f05ec0ff447d5774c3b42faeba406eb58d6bbfd40cc

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3219be3799e96b1efa123b51f01ecdb533b8c75a585cc32a648df024a766c5db
MD5 cd386b1220f0189df18166a2f36bab3f
BLAKE2b-256 5d338e5f815727b43a58282a33ba349489085d005926b371fa488a639072fdde

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d980b3187f9d326485b89dfab4e5301a4364063f8e3dd85667cb1568faf11dd
MD5 58b8f04916db58ab2be4e681ac60c5e3
BLAKE2b-256 4f1888d9607409fade8d4e791a3d7f50613eadd0bf950f5a58cb5f26555048a7

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c69995bd9c98f6490ef52de39810d6635a334cc6bf43b14b5eb581e2d676e71
MD5 4b57f2031c9ec34f89cf76816a1ad5d1
BLAKE2b-256 f8f280c66b09856ef37ba97f961b223e5469a93ffb91512029010306c70d2a53

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7edf4c118826fc1fce205a9f8849b209841939b3c506b0a867a765ad09c579b7
MD5 544b677ebb010771fe1e612fa508bfce
BLAKE2b-256 70127dd0e25ded3b4cbe349718fbc0f8fd6a3138d324ec3b55b4fb9ca797b97c

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db6fe357f4a15d8304d90532d17538c33d14db617040d2fdf4c1eea41ae260f2
MD5 7fbf3bc9b56c491013bef024fd473555
BLAKE2b-256 a9ddc093048fb468f8f7d2872338c8ed53f755be640d5a8d34c0a0f4656c4790

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6c7b071dcaf5cd43ef0cc2aff60620714de89565f681499fd064017e0b2f0531
MD5 fd21fc7c3fc45559609308d1d35b2932
BLAKE2b-256 f421ac2e7194f370c486bfdbf509f17081e2c5f94b3ab29c2e71411beaf84a0c

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1bdd35678bc4c82115a56db1e55ea57569e23d5ffd3719ff9c33c97fd6c4c407
MD5 b6728dfb55019164669878bb44644668
BLAKE2b-256 51435d23879dee5b08791d1d10ea75af12d5462673141d55148fa3edde687e74

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8994820e4d2d56b4b5077fc546797874e2d062b1f06b49700a183d8ae724d977
MD5 f4035f9a1443be4a524479e064b6634c
BLAKE2b-256 8ea5aa026616cd4318e6f5046962fc6821f4cc12bd31277e857c0e0e2cd01d39

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bfedcf30da55960d950590ebd5f3642193fb47066d5455c36cdb5a7091fadf6
MD5 1deb6d2c7b334f52a55942badc9d584d
BLAKE2b-256 f719f3ca1bcf0b33ecc29adaaad78f17d17f08aa75397b0d35299c0c1360330f

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9846ea8ed1b7d82b65ea93c3c2279ecc81277376637503715d009d53cc7e7d17
MD5 d1c4765259a2bf33cf5375b93b74c7c2
BLAKE2b-256 80e1d3296906cdde97eb8d13684c8b8e67cf1f18560ff442d067b490360f53b3

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0369e341b6100baa6aa1a1609c6e4d624169a1a08a8dd74a1b4ef8c56328e5d9
MD5 c596dc8e441f21e47b28ed2a98e7047f
BLAKE2b-256 70f259349474fe071bddf92bdd384cab595c7680ceb3e0d5a0392f874cb1ee58

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3a76268f51b170da7407048aa0e5b03d1a723f50f4e9bfb37ed0c54e5709171a
MD5 2d29c7a1d38f6e0a1934bdf84662a682
BLAKE2b-256 23783d2dd9d30517c67e900eb3313c6aec7e08d43b60fcb6ee71f75129fc0298

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1d27815b24653df00b0be110135724fc69016c357c0e31f6d1681edbfa3a4d5f
MD5 401c714093d808d9987b2aeb8bf20a4c
BLAKE2b-256 c7e883a47a3a7c7fe45f968ef39d7e5b08c45f897f676920e6b9f0dad706c47d

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16c14a005951717441e446c3df180833db2d4ae852612eadf00c367c99f6c7fe
MD5 da434561bbbd3620c356efc35e3a25b7
BLAKE2b-256 8d3d113f80d27a66ba2b7635d846a2b09c4e3ed45bebf44085386b2aa1e489cf

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3eea1de6f4b093839c379d9649ae6fe65f6eca75baebbbfb14d4e0014642ac9
MD5 b335c81a5914b0ac737a1301deba7eab
BLAKE2b-256 e0c10c6cb54803ca206caff43cb2a0d78b8a2999afd223c8a5c66079a7d39e55

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43d4f892b470d65b0cec81d95f1fe4972f212dbda3e4dfbfc46efcc1ac77e1e7
MD5 d46a781e10f7bb95040e4976f234190d
BLAKE2b-256 523acd3638dcbcf90c6372de891ba0cc711f3fc14aa892f2e9bbbb93603fdb31

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5f19d9cff6431fa0dc82e55aa59a74fafdf1518946f0e62585b4d3a552e6ebb
MD5 d708b23053575f5082711c1606f2101b
BLAKE2b-256 cbec5dfa0ff2671816f6f87b052d4acca2f1edc9804799febdfc4a740103f538

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a8f54ec73cfa209c3e8a3b691d47abb91c3bdb114a933d2d90b9af540d7b25a9
MD5 3df96ff11f19a7b7d762fe17e05050d7
BLAKE2b-256 b2189442ff87a1509bd70ce58bbd574dc8bb3414a3fc651599f9bf0b7a55af50

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 3f8ae77f721462811e59ee05b9037470cb0680007b19dbbf4870a190701538c3
MD5 5e325d4c48dd1d3d9d8098dfa4e16762
BLAKE2b-256 084c2fd33ae417e9e0b87b7183c9e326d7fd70a732211205bd8a8a6b7f0b98d9

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 133a9a920385599447f8f855baf83ac13c733c0f55f3fa12158b34ad7652e14a
MD5 7d6d8c2c85cc16627aa5725be9a033e5
BLAKE2b-256 445c339177f42935080550ca9d9368b8c17333fe061c6cf9a10e494c1c3adf00

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 884c91b189526018a8fb2a5be1a4fcae6a446d99a380950e5b6ef200f9456892
MD5 d5728d4cdc46996a918427b6125d2392
BLAKE2b-256 01633a4837b3e9e3317b1d4c02f9115851bc1850d36b5bc5890647946b9d6c76

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3c4691f4cd74a1c2c9bd580c072c6f4f48fe4498ba540f3513fd7ba02b28797
MD5 752285f4401f06085a05ec211517d7a1
BLAKE2b-256 a78c6a5af76a75e47f8369ae4173c944a9594b513f576011fdc6cb6d8d83b8e7

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f61b0506193fd7e00ed65fe8b1ce6e332d67fec3cc250744f466f4e81a075a2
MD5 db0dc9c6f23d20b1a15dc3119e45d91e
BLAKE2b-256 b9ffef2641969fa9a54b9693c01875ae203f6d45d81a0b3d09eccb20e118412f

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a8f08635941c0e036412153da4e713e73b613894dc7181c7017c8cfb984cd5c1
MD5 15bb86a5cc071a0125a7cd3d6b9154ac
BLAKE2b-256 e05a45fae2c192a92337cee7c4266a9b82f1ac22b6ca334635fb2d2da5f373ca

See more details on using hashes here.

File details

Details for the file passagemath_ecl-10.6.42-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_ecl-10.6.42-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6fb47405570d7ded2a8171e74b634618a650392897d05cc2d433b79442f98d56
MD5 4fc686f7eda907d937cc6b2d564fb317
BLAKE2b-256 ba0caf1b9dffdd3f4fce2a75823b28dc17aed166f242e75956968b1a252da781

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