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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 13.0+ ARM64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

passagemath_ecl-10.6.47-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.47-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.47.tar.gz.

File metadata

  • Download URL: passagemath_ecl-10.6.47.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.47.tar.gz
Algorithm Hash digest
SHA256 bab626c5a48ebb9f8ddca32d1b6e838998306bbf43053316e85b19b5db79715b
MD5 2f92e3e8ad908f68a9c375b8b37fa97b
BLAKE2b-256 1511aab0b2ec6fce293485766567eff0a2f3a8b804709ac0f21c7fbb8e4c5b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 376af76b8d9192f6f0ed67768b4ba6252eb8582a4ad4033f95fa62f8eea55dd8
MD5 e6b894fffaa0315936dccbc90fc84db6
BLAKE2b-256 3c184646d89e6930fefd3a2748ff27116ec9a964ab55435448ff151c298da57b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6937f8aff1ddbc0a0af1be6ac14970b5f91fc2319e33aedb7a9cc261e903925f
MD5 0386876e9ef98a428c042955e771f22a
BLAKE2b-256 c1a2238a2f06fbea4d1f74905e6c615aa696f24b87c63eef8ff326e091dba27d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2e156617c81c97c3b6eb0325e3c15ca690bef0c427f405d36b4a8028e78461c
MD5 82594645364a1b82466cfb6ade54c010
BLAKE2b-256 f211f4480fa55c15d608c2e102345a760142f26f7452a85aea1fc6c11f01acfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00ddf40277eebb4ffc2ccbbcef756069601c18e5a84c2ca8d2c64a4c2ea386d4
MD5 d5a867cd34984ebfb1f10c1f8328d0ea
BLAKE2b-256 eab6b7fb42a6746c3258d509a2f993b18dca6d93834f758b160004fc8160a39f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bc3ade929b94239c06c3252fd0bc7a90d5e76437d58c1f06ec783c77aeeb7a2c
MD5 27f9ca4b03bf71211f44157717891eb3
BLAKE2b-256 e3dfed8a027b68e86bfdda59e6dd3c0cb6225c486cfb13d3b0e258324ca867e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 19f7d743ffb46c33171315403c343b88db4964b4563b0159180078f475a9520b
MD5 897187e3c2da0923f6132cd81bd687d3
BLAKE2b-256 56cdfb2cd42c44da949413094c59d5b099c11dbc60ee42a428272daef89d08f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b459819d3e192c449bf282d835f01963d2fcfc5845ca9e7b59f0e9152a0d1c68
MD5 37303d082fefa35a3d074254e70dfd33
BLAKE2b-256 b4cd3b5e5e887f0a988277ec4fe816b995f8fa0059158c7ca456c50d0762cb3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae34ab1ae160c9830847eff5ceef5a3e2771607b2233b3d48cbb9b8ebf4a9104
MD5 79b34bcf9863d8ed62861e0a682e2cff
BLAKE2b-256 97ff192ccb4ebc9aca256614eb70dedc9d9ccf601eaaa69e58736c3b8004b702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 174454b2607d807383dbb28e1c8eacfb52c29f29fb3feb7b081df9fae05b9fbb
MD5 52161da1d40caefdd554687ab6fc3bd4
BLAKE2b-256 e65126a3e7fa1bee544ab25b18c0c673ca97c869327ca32c87280f62665a5dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 193b11d6832a340ddc45194ba92777105eb5385100d327428f0d88ed0c065372
MD5 befb63eae3b057de4168b3a1ac572f5d
BLAKE2b-256 023412e8658c566f8c78dea457d72b7aadeaeb2758e44da9b0b821e61d48c23b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bbabf7a07df57cd61f99f2b1ef3db05fd1b0496c2b383b4682d23aabfcf6089f
MD5 257b6e0c923438a7c72b2bbbad08b1a1
BLAKE2b-256 abcc9e3698ae7cc931e1f755b2980b3980d512ca25b495d7c46072f961f553c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dc854d2d18f69ae032b4b882276bc8b3a93764774128996f3aac7295a47ad154
MD5 f662bec9b9412a0bbdedd6e558984ec4
BLAKE2b-256 f8fc4731c7bca2a286c309df999a2dacf45053c14610e014706066295bbb382c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ac3bfe1c3fd7b8e68fe1c1716cabb1ae458d170d00b52b6f28588641716e25f
MD5 c8a94adeb54aea8eb28702fdb9fea2b5
BLAKE2b-256 fb23148de52e5e7a2e42b9b011fe87c568558cef1a57ccf5e9debc975a4cb042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d79ce42b744842e1cd83849a5b03ddcfbb988053d844f689616a604e5654c5f
MD5 ea7e4ca7b42e781ce5d9316d5117a374
BLAKE2b-256 811de57543398627c5d406340048ea805e7a71ae2c729cd94c08a43a0686efb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbf980a23024e34702b41fb0f40bde313852383fa38bf4fe04327b91a71c0188
MD5 fa48e494cc728b6503d50a2c189911ef
BLAKE2b-256 d616e1b42757acdfedc4242b49738ec39516eb58254954406826fde1fa86b4ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a984c7b5a999ccd3638544290c5f2a0bdc02d68645ae7974bd5cd5d2c2c4cbe6
MD5 442544ebb5d28bad5a9b3b1eea4ca543
BLAKE2b-256 fd0b56f3c79f6ba84f0858ffa72427626f50a20655ac7937f1087090adcfba13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a070c03907dabbb58c96e1223d3ac1f54e2caab0c6ac82fe751c2347adb64f85
MD5 cf155ec4bab5436f7984ef152cf65d52
BLAKE2b-256 a970c866b3a33d50b725d0800c0677e3d28642429cd333b8f5358f472eec2825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6eba0639a1ede8b8c7eb355609257a61c4412bca6653eb400634a28b054ae729
MD5 6ee4cf85b0576a245b2e297a67625d1d
BLAKE2b-256 4cbd34dee64162bdefababe76075cd06fdcc3febd03b8d5922d96d1150a399ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75a28e0eb56e72fab9d024a585c830515e7b1fc7099c9b87ba895141612a7922
MD5 d92b68601e480a0b1b44d1bb25a424bd
BLAKE2b-256 7bf4e0b5c74650b7ef5a17732ecb9ad0c9f5114cf06cf7e19ff32b600993f9ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 844ea4afab8cf269f10c9359a8ff10b833b8258b4cbd7d1f27174951ecc9d832
MD5 42aefa81ca4cfd67d5b4a10960a51e60
BLAKE2b-256 f9eabafb0658556be342bbaa811f5a7f3ace92949e0c51968476159ed70c4f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc54f3627cab967f081a70985ab44be22da4aeba45896de9e0741ab2f839ed84
MD5 ac2dc898e3957debee7c3897c00b3b8e
BLAKE2b-256 34ae1243f870b8360b9a429817ca2455bd225a8616ff6f52238dc01440616296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61c84e68301ce7b9ce2af55b153b2a63d55b0c5a236d7c5a6ea9dc5eaf5c0291
MD5 698b67543e55e9b948563a8d7c47c9af
BLAKE2b-256 4bcfd81ce25a492a2800d6418181f4a6c7d38b9ddec85ce0a7c7917f39fdd634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 806625abc4aa02298bd371649df41640bd945aa7499c42aa3794f75b65d7483e
MD5 25908bd934ba139faa55935913b39309
BLAKE2b-256 90c6dc753626d9e3578ef97f9855ce62f3a2340032adcc09d9ed61f656491c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c92bf1611db518131338d208d4564461f07b9f74ccda21d7bd2646457ad65996
MD5 26f69f34c2dcb4904c1034b0c991263f
BLAKE2b-256 79204851cac9d9ac0a4008e746597f4c2af61055c48c78ee6632f541f1132ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65a7bb9c7df4f643d50b9bdd0cec68ccbf62c84e9b0f3ed9f2ad80f184e24233
MD5 76328b3f6c57853c5f61889b06a3f689
BLAKE2b-256 a1016f7abcd4b9696de6dc1e57c86376422b7afd641964416ff600c1b5965be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8df4add433bd71b8a7010dcd9a3402a8bec55dcc448e658533787307c9b5d9cc
MD5 a551f698158443b72a4c36cd66cb06d6
BLAKE2b-256 7b70b68d1a984e7453df38aaea1dbd8c357086af0addbd5e43fdefff737cb71d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91583e15f9c5ec591a5c66f2661a938a1d9020cefe5fc4705f2d418a7fe9fa5d
MD5 6e50be29e5a9405be3bb5e837c009bb5
BLAKE2b-256 0af7b90b3cf6f6ec21273bc27612b80ad6527a775cb159192ba7174924f770ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78064f53684ef658afa95abfaa7bdf9b3507e5a45035de95a2fceed8e3a2e414
MD5 def164bc935a12a4f1a85e66a3501a08
BLAKE2b-256 89d708df7300470b58c07ca3c2aaee26cd9a8206b5f95f56d2e8034f19b54385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b287302215eaa6e4913dc60dc5815db2114b6c366ccf3e4a8cb38b6cec48ea7e
MD5 35241ad8ef057712b2a74a702d1f79e8
BLAKE2b-256 7668c79aeb5b32dbfac8dd82c902082582842167039b903bb6ac482d927b84e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8bd0904c0a983250f30355dd5a9d030a3a3566588be7d07b92a758354b2e3a6a
MD5 a628d7d2a76026a901ca48495f668709
BLAKE2b-256 880c86be1cad271213587e2d7ada165bbcc7f523975397cb98d618c0f23ff651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3d145721359ec2cd9ce68e0672dd15e41b04d40e18444c211ab17859d567c12
MD5 34b85e1643c75de2a898979161944bfc
BLAKE2b-256 7b7f70a401621003f6ebb11e8669be3f356e0f3fd5ee9a1cc6a7b56dd7e55824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef712a52e4c9b8a878b41b70b70d8cb7c1e9e5ba0ffaccfd2e68cb040b150088
MD5 46e584b0a33cc9784c5536deec321370
BLAKE2b-256 41cf685944adeb3c7652ed14c07ba1385908447af7d59691451bdb08a73ebd04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e3bd42984db6e2a91fc29e3a2ba74b4f1d21f6e4c62c3caf6c5c3227f7fd804
MD5 51a1a5f66097a46de7e357fc1dee07f7
BLAKE2b-256 96fa41f8d7e91d62b8962c15b4bc0c58fe192a75f1b8d409440792f770894dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a9b4b61dff31a97d46a1c004de8aefbd95c4288f85f88243bed42e93090c345
MD5 75a1d31a89811dc51320eda3ade2afd1
BLAKE2b-256 2bcfd2e1ff521ebe8029e263d652805fb8a13b1434d10dd2504d759711954694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c06d2dde79bb4a3abec8674a4c87c89054f22567da72426c04a25d7c133a34d2
MD5 7da7ef5f950feaf6d790fbf17a8af6bb
BLAKE2b-256 3dfd8b2d72648db8fbda782841173a8e21923a183d801f90c16bf7b3df50c13d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for passagemath_ecl-10.6.47-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2efd323fa1ccee1d73a1a347564c0d64224e04ce327137b641cddf27dbd663f2
MD5 902f58879a1cb1394309815962ee30b7
BLAKE2b-256 82157d5de3a3a1c6e5d5258cd6fa8f7f32d703c98f2285cbf4d0aaf46573b0ef

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