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.48.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.48-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.48-cp314-cp314t-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.48-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.48-cp314-cp314t-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.48-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.48-cp314-cp314t-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

passagemath_ecl-10.6.48-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.48-cp314-cp314-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.48-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.48-cp314-cp314-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.48-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.48-cp314-cp314-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

passagemath_ecl-10.6.48-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.48-cp313-cp313-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.48-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.48-cp313-cp313-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.48-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.48-cp313-cp313-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

passagemath_ecl-10.6.48-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.48-cp312-cp312-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.48-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.48-cp312-cp312-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.48-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.48-cp312-cp312-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

passagemath_ecl-10.6.48-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.48-cp311-cp311-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.48-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.48-cp311-cp311-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.48-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.48-cp311-cp311-macosx_13_0_arm64.whl (15.0 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

passagemath_ecl-10.6.48-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.48-cp310-cp310-musllinux_1_2_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

passagemath_ecl-10.6.48-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.48-cp310-cp310-manylinux_2_28_aarch64.whl (53.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.48-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.48-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.48.tar.gz.

File metadata

  • Download URL: passagemath_ecl-10.6.48.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.48.tar.gz
Algorithm Hash digest
SHA256 d21b3699740c2468b5b0bd33745f47cb02f78b8c48125ba46382d8f62ee45259
MD5 ab30d9519f04e44ca8e5389c13bea54b
BLAKE2b-256 d342ee539d08ba61f7ebc751b4f89e778e03b6bbfb8c2f4fc5ea2d0f4fa65a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80c259ee8d1330771b60a34b498f31fb7b3b9ccd1e710f5b54b289177c04be89
MD5 7fe7453ff883de55b415aaed2b3921b8
BLAKE2b-256 3faa979f003a0381801a8bd7791b33d01afb69b38cedf1e67816a3a60aa9d472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6139fcf1c8f6e80bc98059afee4eac77fc4caf1e002eeff00624463741e2cfd0
MD5 ef5d2f2c11a392ec8db6d04c7d2fe87b
BLAKE2b-256 38e8e2ffa849289671842657743addbad85c460da1b2e98943a362bb9946859b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1dff31bc6b399e62e3559e9e82adfdcd46ca890503cec33c2fb7a232c354c9c1
MD5 cce9de3878857860391c7819bfc3ffac
BLAKE2b-256 58bc7cf4e503609a5e10aa647aea6ac0e0a9d32b941cd3b74352237da5b37394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 915bbb4427732de139d795c03962d1b5e72072a76473575ae44c3bd33c621e64
MD5 6eed5d36d1df885b86de01d6d982f434
BLAKE2b-256 c2cc2e63b2736c6c62333207722dc2cd1179f9472ec6f71360ce3fda7871334c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e3eec8c9b2ed385433b1cddcfb4ccbc5433d3f17112545f7d3100ad885872390
MD5 b6147818d054ee914671fb3155d33f2b
BLAKE2b-256 ea75f7872216550dd3b1514fdece59cebce6dc162d64ee741f831fabc882c4b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4d7743c4f609bf63e39695f1e390d9f509063cd65f2acfcfe8edf918050f44c9
MD5 f1fd6732a1c577a20c64c651ac708e37
BLAKE2b-256 3d57ad520c01f33e8572469a80cf9e5de0ce9263454dc0485f7fb5447bb11b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a14065423f6575afbb93df076422dec71402dfb504a75a281b570677ad9501a0
MD5 ef3f26cdad29e7b5ed909441b60a5403
BLAKE2b-256 e1a1d60909dfb2bf42bdb8f37c48cd744db955e0e2bf93b18a54f00d8e258ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 782056b306c68abdb30baa50161131e0f0c81f7df5ac4e192445c3d9129b875b
MD5 b228ea3ceae3b70e0d2c62957ce73da4
BLAKE2b-256 0fae36c317fa1ad9fdfe4bb9dd838445beee882fe288c6045148356323997d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35bea35c024f34f4b3dc229b0476d4d37e8a95bf508d2e861142200e999bbc35
MD5 ea7ebd117e3dfdc837d3f6e3a36a44e8
BLAKE2b-256 1b85226fd4e3d80a98a9357efdd1709168cfe258eab231f3bb9c1cec857fccdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b3b57f7b6cc9ed736df253951b8414c7584ed0032e1814d6d6a278bac9c400e
MD5 655dfffff2ad807a66332e1a5980b12c
BLAKE2b-256 53bafc076f8b84b52c4c64b2c8277ab2e62a5857e13744a1b2fcd2ff45f7dd56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ef24672931330ff7655d636d3737e8c8db809382aa380b95f5547aa1651ce8c3
MD5 902ed2ac0951ffce2222f82524d12630
BLAKE2b-256 1199dcdf68813f250874fbd23df206ae05ee0f5400d4418461487a40fb489c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 aac7751a45ca94f0e0667ca0fecede068a80d1b61efb83eed20174c0f1b0f58a
MD5 ab00ae4f0231998fc493e37f4b78f898
BLAKE2b-256 c35b1ce916004ba758e1f7a3ec5c92fc2a5a451ec1c352ecbd4a96fde4a64da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 786ec434b495c959504fcc657de34354a3c7227ad2ff2275bb3a1bba39323e3a
MD5 49c03ec8d59b87b51b585ebfa2d680f2
BLAKE2b-256 ea342fe71d83cecb61007f7ae42996f30f45b0f34a81246aca2ff9c809cec662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 838246c1d1738ce7e98a1050f0b1dfa97a5190fcc0a26bad0b8eb2e0ceae64a8
MD5 5a2a27b7fc3457886b89315108e653ee
BLAKE2b-256 5ec054a4d7a7947217e63245967bea1c734c2d98f9bfa42b3ea47fd6d53c7f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81e4c2cc22d3a57feacd17a911935e20c88a9ea46a34ae597e1a7739dd3d4167
MD5 111d47e4a6381a352f10c79454a4ebfe
BLAKE2b-256 4e12d66526d16f6ca85bffe0e379a41fc18eb110e500e7c9188fae31d75544a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 757a4d95fb1128945422a7fe53d497150d99a8a58a00afe7158df1738f1768d8
MD5 346e280f05b3fedb52b8d9bd695a8c82
BLAKE2b-256 708f3d7b33bb6d05f1af15c7448bcb8d1da0ed3c56733cbea85de4edbfdd0c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b31d678a01bbaebba97f0b2288232ff34c2fca4170ef791b8e7fcb72de845a54
MD5 b323caac8918a904f1e92ff45560c295
BLAKE2b-256 9cb8cd09f69c06d24405c310bf3a8135d07d26ad869692b2e126f2c3f7faf4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 bd1d2734b5c4b86a6f47d559a615d6612c16ed6373c83f5bc8a906b24f89731f
MD5 dc44364a1cdf438db6a12c8c1b0ac1d3
BLAKE2b-256 e645fe754535826f8c8b971b0529dce08d37cfeb0f032d0b027aa563d74ee4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bf7a08e8bd77f113eb0865492d8b1770611ef002205ce9cccffbd78476f9c46
MD5 4864cc477adb64d0baaa6a2bf7c16da2
BLAKE2b-256 e031543ea96364850a6afdb7a05845b73238c1bc07ca26d22180d9540204a1e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6c1f64afcf963867884a4c1672c5eaa91cbc04a50dee2bb0f26478d94138f3e
MD5 fabf0f533249c107d718e38c910d9c03
BLAKE2b-256 4213adbed73c289519f5308fbe3eaf0bbf84906f2bd08b27f8c69b9242e2bffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79567f6051b63a30564ffeeffb736b7e25066b5c42d9890ca41251748964176f
MD5 160fa307648737b1c58687d0c1b2f022
BLAKE2b-256 c39d8ac6f7ea7b59838b4cbc155efd68e7fdbe7ef3ba546c07008c6996ba5891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a673586436e483a866d2dcec00e2a0d3feb7dcc6bfe1784c13115ef7949fbfd
MD5 d8660763c88498bdf0b5909e7aadc386
BLAKE2b-256 f511f9e1d7860a62e475dbab475b807752826e02e19d5f5d3f22e21461801728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 592aca9cb0b5f425c7474ea21accebfaf80a936ece56f9fd21cd2289d2c53399
MD5 d54389aede4d18dbde926da04e0a1b34
BLAKE2b-256 c3ea37af663d3e5a6ae3f39d1e7bf1e0793c3da65182aee140a4e4fc8737709d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 17864d70f039bc1bb2d5103bde2d2ef8369a1fe6f09b7ef29fa39200ed359a52
MD5 b84614c00ef9b7413c46622ef03d24a2
BLAKE2b-256 3f7182600f424ada202bc229d7b9f9418a5c7bbf36117592cbc3446187a7debd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e3b0170be3cd2de5d190543a3f97171b48554a1ff75c018e55412f369e130a4
MD5 084bed369a10f1005bf1e9d9e72f3a81
BLAKE2b-256 de79e618be5d1326bf58caa1459e058215a85fe2f9cc8674f8e75b2cbe5954e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf9d3dc71a3b820e7f7d707f2277836eae68a4695198026c8abe6a645aea3b14
MD5 e42fbf8c3616786b364c875b51d5ec11
BLAKE2b-256 a5c7ae3f152e88c213ee7774f7d8b8342954fdfce592de458341f7a03bc2b835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cae6b8f2d26e260587c2d1b3330596a5d10bb7dd3d00d583479733d96c7d43dd
MD5 d6c01e8629e838629a113f805ea85ca3
BLAKE2b-256 30ee265b90231f2cff74cfd587aff7ba65d4efe0d383713c7d2fa5487ee7857d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcf72811d370489b1c023414f67b78c0c93e4c5942689d879be864e1ee704704
MD5 1369627202c5ff63dbb018cf710683b4
BLAKE2b-256 277fb3b55e1bd82d3e5d98038b41fc71442914a4a0fb953b9ecf6d9a03b6d28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 957dd96975b5d8a5e825f0252eb095a9d6f88f37c879699b99d4901bb3d30445
MD5 8585e9b63a8619318459804238b239a2
BLAKE2b-256 3c7ddbcb6f5974faf80986b482793570884c0d93ebeaa5da5f89f23b31826841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a29a1daa461712a8a767424a59ec74d9174dcb4da9c57df4e1e309578930d162
MD5 391b5dcc37f63abd72a3d51ca40e8ba2
BLAKE2b-256 0a72fe409a1ece8699abc8697874a7b10fcf25b64cd093aa592e979b79dbbfec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15dcbf111e1ca8ff99002866d0b0f88c2f49599f5c217bf8087c4a628dcbac6b
MD5 f97ba77c72f5160c467fefef833db5dc
BLAKE2b-256 d6f70a5ad434c47b064d7b908b16d30287c38b5172377945024dc9f645ecb699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a596646e50fe944868bdf802764f1072105b137df512d68d938c91a1f3284b0b
MD5 0544eebe20823a475f22bc9848f0f10c
BLAKE2b-256 63f6ef527f2d7107ebf8fe00ac6f1deab24f0425d5f94f1c0d384f276b062f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f3239ca17c945e8c550d979a6d4e3849f62132f82753edc16783dfa5289dcef
MD5 f660ab39d6495be7b02013295665f4ff
BLAKE2b-256 1a3278f4e3ca110614b7c001dde1eab519f68cfdd6726dd74ba8ea1c2064941c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1bbc1578eaf9adb7b1f4106f19837b8becf964ae97da804b23005861d6d0b295
MD5 cb377525ee0bba6b08a98b8a30fb916a
BLAKE2b-256 dffee2a27bb1db42c4254238e86d80c1e88c2caf7195bfde4c10dbf213a24310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ec272666502c4a97e33e68974c5a3c3e56c6541593994ee5012e911f887f5eb8
MD5 92c49590da22e7ecb869cece27ad75ba
BLAKE2b-256 92765406bde36cd4fd478746044f90ecb9e64dd4ca5df19416b0fa4b8ee57c76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.48-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f18d0efd5c588b172b24de2071a60c4ea6661335a82eba0adc1bcf682233ec2c
MD5 411b9e3a9b5f1431e488ea24b336cc66
BLAKE2b-256 79770ec94b2257503cb85ef9a18c47511c36a3ce1d88b248a6e76ee50c5c79f9

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