Skip to main content

Speedups

CI Build Wheels PyPI Python License

C and Cython extensions for fast STL I/O and PostgreSQL-to-NumPy conversion.

Performance

Cython extensions run ~3x faster than pure Python, consistent across data sizes.

STL I/O Performance

Operation Facets Pure Python speedups Speedup
Write 10,000 28.5 ms 9.9 ms 2.9x
Read 10,000 21.6 ms 7.0 ms 3.1x
Write 100,000 283.4 ms 89.3 ms 3.2x
Read 100,000 218.7 ms 71.0 ms 3.1x
Write 1,000,000 2.81 s 897.5 ms 3.1x
Read 1,000,000 2.19 s 711.5 ms 3.1x
Write 10,000,000 28.62 s 9.22 s 3.1x
Read 10,000,000 22.03 s 7.32 s 3.0x

PostgreSQL COPY to NumPy Performance

Type Elements Pure Python speedups Speedup
int32 100K 7.3 ms 2.6 ms 2.8x
int32 1M 73.8 ms 24.8 ms 3.0x
int32 10M 747.5 ms 216.1 ms 3.5x
int32 50M 3.75 s 1.05 s 3.6x
float64 100K 8.0 ms 3.3 ms 2.4x
float64 1M 78.3 ms 32.1 ms 2.4x
float64 10M 786.5 ms 268.5 ms 2.9x
float64 50M 4.01 s 1.31 s 3.1x

Benchmarked on Apple M2 Pro, Python 3.14, macOS 15.4. PG data pre-populated in tables to isolate COPY+conversion time. Array dimensionality (1D/2D/3D) has no significant effect on performance.

Install

pip install speedups

With PostgreSQL support:

pip install speedups[postgres]

PostgreSQL Array → NumPy

Convert PostgreSQL arrays directly to NumPy ndarrays using psycopg's binary COPY protocol. Bypasses Python object creation for a significant speedup over the default loader.

Supports float4, float8, smallint, integer, and bigint arrays, from 1D to N-D.

import psycopg
from speedups.psycopg_loaders import NumpyLoader

with psycopg.connect('dbname=mydb') as conn:
    cursor = conn.cursor(binary=True)
    NumpyLoader.install(cursor)

    query = """
    COPY (
        SELECT array_agg(x)
        FROM generate_series(1, 100000) x
    ) TO STDOUT WITH BINARY
    """

    with cursor.copy(query) as copy:
        copy.set_types(['integer[]'])

        for row in copy.rows():
            print(row)  # numpy.ndarray

ASCII STL I/O

Read and write ASCII STL files at C speed. This module is used internally by numpy-stl — if you want to read or write STL files, use numpy-stl for a full-featured API. The Cython implementation uses direct sscanf/fprintf calls, avoiding Python string overhead entirely.

from speedups.stl import ascii_read, ascii_write

# Read
with open('model.stl', 'rb') as f:
    buf = f.read(8192)
    name, mesh = ascii_read(f, buf)

# Write
with open('output.stl', 'wb') as f:
    ascii_write(f, b'my_model', mesh)

Supported Types

PostgreSQL NumPy Dimensions
float4 float32 1D – ND
float8 float64 1D – ND
smallint int16 1D – ND
integer int32 1D – ND
bigint int64 1D – ND

Compatibility

  • Python 3.10, 3.11, 3.12, 3.13, 3.14
  • NumPy 1.x and 2.x

License

BSD-3-Clause

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

speedups-2.3.2.tar.gz (25.2 kB view details)

Uploaded Source

Built Distributions

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

speedups-2.3.2-cp314-cp314t-win_arm64.whl (142.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

speedups-2.3.2-cp314-cp314t-win_amd64.whl (160.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

speedups-2.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl (217.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

speedups-2.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl (212.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

speedups-2.3.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

speedups-2.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (209.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

speedups-2.3.2-cp314-cp314t-macosx_11_0_arm64.whl (177.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

speedups-2.3.2-cp314-cp314t-macosx_10_15_x86_64.whl (185.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

speedups-2.3.2-cp314-cp314-win_arm64.whl (133.1 kB view details)

Uploaded CPython 3.14Windows ARM64

speedups-2.3.2-cp314-cp314-win_amd64.whl (149.6 kB view details)

Uploaded CPython 3.14Windows x86-64

speedups-2.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl (97.8 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

speedups-2.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (206.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

speedups-2.3.2-cp314-cp314-musllinux_1_2_aarch64.whl (199.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

speedups-2.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (204.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

speedups-2.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (199.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

speedups-2.3.2-cp314-cp314-macosx_11_0_arm64.whl (165.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

speedups-2.3.2-cp314-cp314-macosx_10_15_x86_64.whl (174.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

speedups-2.3.2-cp313-cp313-win_arm64.whl (128.9 kB view details)

Uploaded CPython 3.13Windows ARM64

speedups-2.3.2-cp313-cp313-win_amd64.whl (146.1 kB view details)

Uploaded CPython 3.13Windows x86-64

speedups-2.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl (97.3 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

speedups-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (205.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

speedups-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (197.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedups-2.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

speedups-2.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (196.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

speedups-2.3.2-cp313-cp313-macosx_11_0_arm64.whl (164.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedups-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl (173.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

speedups-2.3.2-cp312-cp312-win_arm64.whl (129.3 kB view details)

Uploaded CPython 3.12Windows ARM64

speedups-2.3.2-cp312-cp312-win_amd64.whl (146.8 kB view details)

Uploaded CPython 3.12Windows x86-64

speedups-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (206.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

speedups-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (198.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedups-2.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (205.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

speedups-2.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (198.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

speedups-2.3.2-cp312-cp312-macosx_11_0_arm64.whl (163.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedups-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl (172.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

speedups-2.3.2-cp311-cp311-win_arm64.whl (129.1 kB view details)

Uploaded CPython 3.11Windows ARM64

speedups-2.3.2-cp311-cp311-win_amd64.whl (145.1 kB view details)

Uploaded CPython 3.11Windows x86-64

speedups-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (206.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

speedups-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (198.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

speedups-2.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (204.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

speedups-2.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (198.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

speedups-2.3.2-cp311-cp311-macosx_11_0_arm64.whl (161.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedups-2.3.2-cp311-cp311-macosx_10_9_x86_64.whl (167.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

speedups-2.3.2-cp310-cp310-win_amd64.whl (144.9 kB view details)

Uploaded CPython 3.10Windows x86-64

speedups-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (211.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

speedups-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (205.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

speedups-2.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (209.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

speedups-2.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (204.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

speedups-2.3.2-cp310-cp310-macosx_11_0_arm64.whl (165.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

speedups-2.3.2-cp310-cp310-macosx_10_9_x86_64.whl (168.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file speedups-2.3.2.tar.gz.

File metadata

  • Download URL: speedups-2.3.2.tar.gz
  • Upload date:
  • Size: 25.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2.tar.gz
Algorithm Hash digest
SHA256 3d49636f23faf73836a0f100580d2b6321292709af438831c895f512e9cfb52e
MD5 b8967d5c29576ee85961f1c114217a77
BLAKE2b-256 988188510e97e5448ae9285963650bc89a06e25b997ec7511f336b76f14efcbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2.tar.gz:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 142.3 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 985e8cd16c524d23ba0919846103611538bfc36e9687500f5306a5931e94e1f5
MD5 0288c6be2cb7ce97118e0c93a5754e17
BLAKE2b-256 6d868e5412cdfa68121fc251668a81723c4cadfc733ac0bad619540cbd406aff

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314t-win_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 160.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4cf8b94b48dce1b40f350d03ce25d7b3760cb542d3b40a11c8a4dbc6f7b74d1b
MD5 17ca57216559eed9af0033f24b2fb76f
BLAKE2b-256 638d79502154693a1dde586394a10f2b1e6effdc8484ddb8816e7eab8d48d074

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3600b93aeba1f80a4ef45c903262d696093c4397488de5dc9e311a9884abbf8
MD5 c63e98d1f2427616ab105507405d39a2
BLAKE2b-256 8e9f88e070e4dc3c5f284069e61e654f7c4b4da59f49707ddd048f3b3fabbe6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2237b292bf2fdb646aa4ce654cff79916429569efd1772f01c0b0c276e8b47ff
MD5 f3598149ee22a9033e9b423820cfe921
BLAKE2b-256 21811166b146062ccc6243c9d09385f33d240b221bf2dc892519b66777610dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84a860891e9ee2471d49f6533c728cb58882765e784da0b6703e4f7b6157ff22
MD5 05e99ed3bce6aec4b80ef02e630db28f
BLAKE2b-256 043c949949a8de8d6923b7ee762ef73c344f3556e3f464acb97520eee5bbd0e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6c72a7bd9f4e9b43ff8c34e305ee76cbb925d385a3e32f708c4bd658b24d20b
MD5 b76e6f7b4bb481e88407c0f54d2f61a2
BLAKE2b-256 8fb3a49f1b53591ff86bb3ac56cfe8de7a7cd7db2f8f10d5ff6cdbba24eedc24

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66d44ec18fa4ef6de045c96fbe207090fdff2bd402c678be0e48f2aae4faa71f
MD5 2d7a57446965ec904cfcdac795bf846c
BLAKE2b-256 3d655157f9c51ab84e97ff45e0015013315d9c97c7dccf85b8bb044b57f31dc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd1efec1c0778d57652664f55eae25466efc83149d23ee9dd3bfac8ecb2004cc
MD5 f9d4532e5a652bccb85a2db32f6d1285
BLAKE2b-256 91a655e0278085540b6448906bcc58d412d964fab35f56756d04ab6ef887c55f

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 133.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2a4f17cc729fb1b8302ef40fde894576f7ebdbb3eb21860d29b2d64bc2941383
MD5 b5d194de5d227cad6dd461c417e155c7
BLAKE2b-256 b3bfa11d0b382b0df5163feae7c75898213e865b34e7576f15e134a58fee2f2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 149.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 34559163ea090c1a2151d2501500cf43439d2d000349fe6645165189610926bc
MD5 cfdf29e8a69f4a998e97f0da2be1fdf1
BLAKE2b-256 bdbfbe5a1e357611e175dde2c1864e3951e1a44510b12728fef5cc9ed3ad48cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 0ffba7599af18cc182d960d5fe76efa9314d5e2dce3a8261ed8872e914006c38
MD5 0b9b6fc5a26bccc107200518e2f97314
BLAKE2b-256 66765d7069c78981006d70bcb0775c5b5994eaa9b3a7fbd4aca45199daf338ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 382bee3d1a874b3170c94fd78c625971082c1d1ccea241ba8763da59372efee8
MD5 468d015375c6f4e15e975feb6951c7cf
BLAKE2b-256 087fddd773a8dde2e12f8dcf87ccc4c036cfa7b29f04cd7906a52932db43bac3

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71e4b408ed62bc05b25bb18b325b41287470f3a25bd4ae2dc91a7532f73a1793
MD5 514d64d9bd1bfdb12c402e3bbf2a25f7
BLAKE2b-256 e62f8e1ffabe12e58521511173436a62961251ea54b05ffeb112cf54692c4bf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 055d39ab98a4d98eb783e5544f4363c338c41f22bf340d1bc3df23b5af271788
MD5 7cee050628d8ee8bf381935470a69c33
BLAKE2b-256 1afef0ae540eb3d2c62b49e1fbf5d05a263751aee219e721b5b02f648a11291a

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ba8bfd0e6ee19585cad5b05a49a4d24082a1ca79f9d1e5cbb6cadf812360181
MD5 7fc7a54187f7a00f3549e3b7f193dbb2
BLAKE2b-256 8a5bf6d4da29cea739f6e5363b489ca5f8350b9b99bff6840014c920e3411da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a378418b6dcb852c0ef0ca6b0ac376f197445a2475b2cd15f11188a26849ac0
MD5 f48bae4dd9ef13e1c3e19c6ca591afbb
BLAKE2b-256 dcf996f5b50e59b8fbf0884447ea95a9d668b5872a1a232c7d86757a6e8e1be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 67f64b1fccb145a600e16685909a83acc6e3060e7a1d30144ea26ce64b8af8be
MD5 9190edd10aa81d37035a2128df62c33c
BLAKE2b-256 55748ce519724a85f17dc40a7906717532b3b34cbd24a830b26a117571d6739e

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 128.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a4923c020f74d4a9bba8655e9b0c3406414911e22725ec4d02334187c88ebe47
MD5 7fd9d0ea0822d42e83cde793d582e591
BLAKE2b-256 ab2f03797b7ee4fe3c61389a7522297d1657afebc47423637ad4bf0fd0c534af

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 146.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 059f681e9521dcf08338f5e9fec618e2b983e86cfcba22b33fb023eb1f92fda6
MD5 78e3cb3c69a7eb7ee15e02ad1e2038e6
BLAKE2b-256 85c2e46824c0f85a5d435291dae785472dac194be3a648645c757cc48f55b1a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 f1ec92223ae29fd4dba4a957177a5ce5ea9ff2bf196992319bd61b0e9e8c37d5
MD5 7f3e562bf144b5bf699a2c90ef30e57f
BLAKE2b-256 c6c476fa8b1f2f3304e88baae366ae0edd140af5fbae10d0ee67cce667357b26

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b632ff584dc105ce06862d38ad63b897f68aeb93987c11e6432723a75187789
MD5 710227b1d0d4feeb509c2f19823fb5a7
BLAKE2b-256 17103e5937f0240669d3f402e2730f2907fb32cff571901d9cab35b7eb5eefce

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd75e5cbdf4a8ca95cb2af9d0abbc1121b6966ba97454fe7de50d4bb8d6b2641
MD5 29ac1d317206adc2802d61b7abfc455f
BLAKE2b-256 7c28ae15f65c72d9cff1f8829c84848b311e7b0542e82826c1c9abdedd6d227e

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50933e9101ef01a47130bcf09a09693bde3f4129f06293fdade8391dd7f40d1a
MD5 3bc18b1486ef00ad90d09e88842ac671
BLAKE2b-256 eff723f7603e16bd206a25c6041ceb6d1adce9993a4d4d47392a5b3fce3a1d7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f29ab87b18d33fef5bcc5d882041ae95d5de7a303ce7725bf0025b5a3893b5d1
MD5 5ca7b2464ea748e9882f247d37bd3bc2
BLAKE2b-256 dd45e31b5e734f7564d9bd4b3406ac47cb3d0ca09af43993c63b18f90d4dfb04

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ac0df5282e05451aa88a3e32104a0386fd0bb10bfc8936e6a8ffc5758e720d1
MD5 802cba64f570b9568dc7b7c2c6f13fd7
BLAKE2b-256 64455e9ab1abc767b181ab8212fa71d572d2ac8313d79a9bfe15ec9bae42db95

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c9128cbc73021034a579d671f320cb250ad0021278e093bc419f8fa7c355b72b
MD5 4dbfaf5780e868dc14942b7aebd0c507
BLAKE2b-256 a5de2f9e9506646e0697789abc07b8f2c514df264ade9990a5e908a640cf87ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 129.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 dd9a7cd53190140dc0d4d17ebe8186a7ac88a0f59a037aab96888721a78f1ffb
MD5 5effd32a927b30c5ff9cae0f9423b314
BLAKE2b-256 d049f506c885934113237cbc503c6717d2665661101367c3eddbdbc0b63b4073

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 146.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3407f9152a78a74e81973b9cd0163902df2db8683976f997d1b06d888d7bde17
MD5 698c37521d5455f0fed915c18ee47f2c
BLAKE2b-256 27bd4cbe4385b2510818f5987aa5bc88cf3e2ad47cd666a7dc5d1077c7aff2da

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6a4d83ebe6a2866a8b938617e151297c905fe25b9cc8ec13719a72f8cab3511
MD5 c813e049f1aff865c2dcad6be9828739
BLAKE2b-256 288533789e9b561bfd034a2153ec4d93af5169cc0a68f491ef4b87990687ae35

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b7077bbd85fd01a08e9319901f5cd3015d918c6cf8046c1afad577e1f37e28b
MD5 3864cb34bb907fbceda094d4480a31f8
BLAKE2b-256 444561725ec7d0f77db2fa692bd2105819b3dae1ca2a1067ac8fde3dc889a942

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13d28bd11398c0148f87b20fe5e510479292c266858f99317d17e3f74f0727a9
MD5 f98c56995097d3e417f9332b7c7cea05
BLAKE2b-256 d0d609d2bc56843574c4afaae0156ebf67b06def9c9f93e61f21bdb0e5cb73b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03348397f89967ed83f12a14839171ab6a2bd9290f39f66a931ce39130cabc04
MD5 36d7204814906044a0518dfca217fcc0
BLAKE2b-256 ffbee35011464ba8e8c406ca52d0c192965a2ba2ad9ac6bbda7f6c07b7648846

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c1e6631c9da173ff203b1e2e88da32770b8d3175bd23bc7427e31ce440760ad
MD5 08ac8a5e8e9ec4bbb81c19c40109e2ab
BLAKE2b-256 9e0c7755e907b65c7e91db7491c63d68933c778b2388482649e1da890852d150

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c8a0c2f6f55259596dea2599a97163003b7e63fc7b77b7f8af9067f89e14755e
MD5 488bea8b0c9fe5e2cb6dc1721f87194f
BLAKE2b-256 155ed23b3f3ab9e6c81f20f0708b17b37f9e4938ffe58039eb830733645e9a8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 129.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e172e3cdf29276e736101c4a9b23e4ee98f512d144d725dc3307f30d55182d03
MD5 6226ca10c8199537428997803f5a3801
BLAKE2b-256 9ee1a53f5d9846f3c47d488f45cea3799ba00312bddd7bc296209bc0ad0be2f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 145.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bedf7b1e00007326086e8d7307e1b4e41d90e2e109864cafe73e14edefc728a3
MD5 f15ef21c3e5b810a5eba10a9919f7ebe
BLAKE2b-256 962d183bf6aa0af56e1d96115ac665a760f55915c05b1e87c2bd7ad8587e1f03

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad2022a425ffad05e6797c1c536ec5b17cc3705149c669eb40d7047365e6dbfc
MD5 cf9fccbea8dabd157ee6dee6c7782a78
BLAKE2b-256 0b0b0dac3706ed7b0e86f9e1cbe5f71215ea427ba8c81411ce551bd495fdf7f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34d835a5ffd6354523eebc8eb85b599b78f9333d93188da89feadd8f7baba1b4
MD5 217b8ea3ed5c91d14f6ee4a4a16076cd
BLAKE2b-256 bd476cc3d962782d55b05889c5285f3507a0d6e05c48080a7c8a976ef977b8c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 379f5f8d29956a6c849db9145077f0d04d6024ffbad0b5d0584be738a9a8244a
MD5 64b1c57bab0e0b04232b2c3359bf3ab4
BLAKE2b-256 a25e5910716335a1edb6d910677e147a402fac64fed70e40275d0c971f3997e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da26abf2508eabdea3cf138fc60269a8283bdad22d8b7d8631a05d04f80e846a
MD5 a3152607cf4602237f26447f1ef211a6
BLAKE2b-256 12acc41aeb3037c8436a8cf5ccb37fc9bafa983f62a0b70ca535b311c2b8ba7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e812377d8af09dfc60a58ab85ca3fea6b68c5c3e82d7cc08e3634599791f8167
MD5 fcedbdfcb767c705d61a9693062f04f8
BLAKE2b-256 a3136d1428e846e0d80f3370d8d22544c3726ffc298fe3bb17009f01d9eefdc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb8f04c5810a7c9c98ecfbab6084a26108cc1c3a5c586f138e21e3aeccc24894
MD5 be3908471d1bf6ead054f2cfef979852
BLAKE2b-256 1c9f519740f21343983ff6aed6abe29eab58c9ff86d83cbe07d9facee5974da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 144.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for speedups-2.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aca89fff07f8bf7c044c213251770d3789ee1f5e63804129bb8c92c00999cf76
MD5 de2bff59ccf160b68165fe40cc536213
BLAKE2b-256 7bb3b9ef7c506353c3990ed58dc01e90508ea4a08fdd053b19c20716439d0707

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe30d90c537d52c4d65d7c70904fe504bdba013518313640dab628d0343b7a00
MD5 6a3cb13dcd6beaa7a34d14e323bc018c
BLAKE2b-256 a400f89faf7167452a901990f7f6e2997c852e979a7230f79fe591a98a15a4c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57685bef3c50f293d59989e2fcf4237498fbe5195149ee70304ea21448a9a94a
MD5 76cabe4e9515e815049c32e084fe4ec6
BLAKE2b-256 cfbeb9844acf9d094914f85a00aea6533fc45dabfe65df050a3c64bac87ab7b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b1443a54f494045c02d8991dcd5e48435d7f043440849acd57194d7741ea38d
MD5 ae91caaef41ef22d11779fcdf38e81ed
BLAKE2b-256 e8f86c87afbef79fee954ec952fae16499a4a41dd324e2fb199a8ee86000baa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12782ac7aac4d088fa826e2068638736a4137407d3dcfd5c6f7fa8ba9546c308
MD5 12304493adfce0705be80a6b3f748f5e
BLAKE2b-256 0f28d57bfe5ec11a3e522ac139b94ef6b46d6f338e87b8e69fed82dfa8944641

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c96a3ba043fbc4a25f9b2531b099fb0ed6468eac9794b8c3384219357b3f8db
MD5 5bad735f6dd3fa4c2ae17b3011d9fa75
BLAKE2b-256 880c305e218518f78f43522b7e0f51212a42fa587a385b9c910a551bff2500f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file speedups-2.3.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73020bec23370f413a42fcb2f8b164390f572adf49556189cb79a73c2a7c3850
MD5 8fc8e4052b5c828fee6fa77bbd90b36a
BLAKE2b-256 588a9e9a63f22c0a5895e583273f93589c5b7997a7872992dc73c919fa172d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on wolph/speedups

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page