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.1.tar.gz (365.3 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.1-cp314-cp314t-win_arm64.whl (493.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

speedups-2.3.1-cp314-cp314t-win_amd64.whl (511.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

speedups-2.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (567.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

speedups-2.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (562.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

speedups-2.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (565.8 kB view details)

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

speedups-2.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (560.0 kB view details)

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

speedups-2.3.1-cp314-cp314t-macosx_11_0_arm64.whl (528.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

speedups-2.3.1-cp314-cp314t-macosx_10_15_x86_64.whl (536.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

speedups-2.3.1-cp314-cp314-win_arm64.whl (484.3 kB view details)

Uploaded CPython 3.14Windows ARM64

speedups-2.3.1-cp314-cp314-win_amd64.whl (500.8 kB view details)

Uploaded CPython 3.14Windows x86-64

speedups-2.3.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl (445.2 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

speedups-2.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (556.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

speedups-2.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (549.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

speedups-2.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (554.5 kB view details)

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

speedups-2.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (549.1 kB view details)

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

speedups-2.3.1-cp314-cp314-macosx_11_0_arm64.whl (516.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

speedups-2.3.1-cp314-cp314-macosx_10_15_x86_64.whl (525.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

speedups-2.3.1-cp313-cp313-win_arm64.whl (477.7 kB view details)

Uploaded CPython 3.13Windows ARM64

speedups-2.3.1-cp313-cp313-win_amd64.whl (494.9 kB view details)

Uploaded CPython 3.13Windows x86-64

speedups-2.3.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl (440.8 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

speedups-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (551.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

speedups-2.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (543.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedups-2.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (549.7 kB view details)

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

speedups-2.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (542.6 kB view details)

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

speedups-2.3.1-cp313-cp313-macosx_11_0_arm64.whl (510.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedups-2.3.1-cp313-cp313-macosx_10_13_x86_64.whl (520.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

speedups-2.3.1-cp312-cp312-win_arm64.whl (478.2 kB view details)

Uploaded CPython 3.12Windows ARM64

speedups-2.3.1-cp312-cp312-win_amd64.whl (495.6 kB view details)

Uploaded CPython 3.12Windows x86-64

speedups-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (552.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

speedups-2.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (544.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedups-2.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (551.2 kB view details)

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

speedups-2.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (544.2 kB view details)

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

speedups-2.3.1-cp312-cp312-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedups-2.3.1-cp312-cp312-macosx_10_13_x86_64.whl (518.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

speedups-2.3.1-cp311-cp311-win_arm64.whl (475.1 kB view details)

Uploaded CPython 3.11Windows ARM64

speedups-2.3.1-cp311-cp311-win_amd64.whl (491.0 kB view details)

Uploaded CPython 3.11Windows x86-64

speedups-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (549.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

speedups-2.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (542.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

speedups-2.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (547.4 kB view details)

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

speedups-2.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (541.8 kB view details)

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

speedups-2.3.1-cp311-cp311-macosx_11_0_arm64.whl (505.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedups-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl (511.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

speedups-2.3.1-cp310-cp310-win_amd64.whl (490.9 kB view details)

Uploaded CPython 3.10Windows x86-64

speedups-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (555.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

speedups-2.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (548.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

speedups-2.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (553.3 kB view details)

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

speedups-2.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (547.9 kB view details)

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

speedups-2.3.1-cp310-cp310-macosx_11_0_arm64.whl (510.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

speedups-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl (512.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: speedups-2.3.1.tar.gz
  • Upload date:
  • Size: 365.3 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.1.tar.gz
Algorithm Hash digest
SHA256 ca08c674fba55e3d000cf87b4413155917602aa51fbff8008067840b25a6c877
MD5 7b67e2a5bbb40557d11b3200cbda0c2d
BLAKE2b-256 aba2e405f07fb70e9fc81b1d510d3d25d5b24ea9a8f6756bc9638a93c30c3537

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1.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.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 493.5 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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 85b097a7bbdae8c3beae6c114c818b3fce794219be1362f119a1dd379cd149fe
MD5 494eaaf8ad59067167d5eb3bfc583665
BLAKE2b-256 bf5e746710670beb550159b2b89f7273f6b3eb8bda6f1cff272f736b6c518410

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 511.8 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3de77fa37ab79c68c280145f3ed591db0a68d3ab98d6392c0e034fa497edec32
MD5 0efd0d551aa5d036f5ee948b302776ac
BLAKE2b-256 8d332b10e482fb260b8db1de4941f5cc7f7ee4bb3148e64a870a1b2a66275441

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10ef14ced7e708c85aa50ff4c496a233eca83b6026e386f4391eb3a569290a2f
MD5 72b8c41c26ce90def5155a09cc4ad165
BLAKE2b-256 a171577e67b3ddf69a5ae005281a25de25631066466b06795d9ff8be57e14f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c2f8e0235249d60500e59b80280a037f36d9415b238ec50f4824aa0747eff63
MD5 ad63717eb03ece64de5f3a7ae2e3d0a4
BLAKE2b-256 f3f78798ade020a4e41df434bef42bd2c5386b530d2d1021800363dcbb872aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 540181580aaf7657cf22a5f63f4da665b2484b47cbfca5b9f206f7670e8681f5
MD5 9d5b8957a5671e366eb9f5546308f205
BLAKE2b-256 c0d798b45a9910b43d6f4ddf8adf47799735fd473dc0580afac1eae1eca89662

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02b8cf49ddad37e4e2727aac0f0c40af642a3b725427167487f46f13ccb00d40
MD5 32ccc86eb898be06a4a403237dc8b2ee
BLAKE2b-256 71ee646083fe0398c8c472c8737b59abefd8e8969ac53f287578845bddc5ba5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bf74c0b95bdbfda09913f241241b2917781f18f00926fbab8a627e6007b4c49
MD5 736b89ea07eab391fce375309815d34b
BLAKE2b-256 3bf1a634092a1be97e2c67adf235052cf896e36568f86f58fb352e444164b72e

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9e43c689b7a2bb4096b06f823224ad6addf523922541da7c045a05177069ef75
MD5 467e67e469116ef7e8a1e9ffb37eceb0
BLAKE2b-256 1a06bc9f4e93d66d2939cc0ea1a807ab593e6b28f77bf46c11e755e4dadd9558

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 484.3 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 06784b5ddd9bcedc3ecfc6202bbd1f2556d96738a1b615ca8490ebff90a35c8c
MD5 6b6c9ca3e8483adce8692aa7e1e652c5
BLAKE2b-256 daae43bdda668eeda56812f7e5dc3c617b479ed954671c27ebf81f3a1a298705

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 500.8 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b1ebfa481ce6f3cf39f0d40dd4efb86adb1f61aecf5d642d96819bdf3accecd2
MD5 221c340ca129c0ffb2b5ff9fdd8cb6bb
BLAKE2b-256 466885345d5e84240b5759f151931767117c6915d0846a8aac53509c8715fec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 ba57fb30b79769fdfe79f61ba13f251a4419f439f3c121674d3b5f06a1511102
MD5 ab21de53068b19bb8beef1063e27e231
BLAKE2b-256 ed792142b808353d9f8d4ecaee2f726c144247fbb3144ac82eef4dbf126c471a

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f90f96b8c1fd485f646c7293c4de92c28268eff55e0b69d79d50fb2ce64c19ff
MD5 301784acabf41a2c5725ccc9f4f72f82
BLAKE2b-256 28f13c772c62e1346022cf01c8791ada0a1b75096a9063e8ac10d299e84b31d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a77290a5637cb746156a19da7b0f086adbd1fd5fe488e2884574bb3bb1095c3
MD5 4382cbc57fbdb4be9c2667999f9b65b9
BLAKE2b-256 ec4dc5fac170ccc7b323cf7f45286fb93ec616e58d337841a661489c8e473f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4115451ba3abfbb7a050d51ffe4af3e4a7d2544e4b3ccaec34653db58f342521
MD5 97ac4cc2de1ceb965b7e611ef78a63e6
BLAKE2b-256 7c12304740e38926e2b26736453681adcac5da4eb55bab20fa83badeb4444d0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63232f198d4197ae68cddc356b6a231b236a238d60faeb23aef3a67fdedbc74a
MD5 1f9759d120eaf930d4cc43962481347e
BLAKE2b-256 09b019e7c60151c299a3909ba47b40b944ce9666f74e337365e070f526d79571

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51f2390ae49e714b20c628632d6e18ab63e7626611172793d5c9263f01762a8b
MD5 28c2072e890115a92f7b0da2b1f78d21
BLAKE2b-256 1d62c762e445736083718146b28da007ecc8c7146ded16e442df0a06b2977d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9882f7127bd18c0277bd98aa24d52aeea1e9f98e80abbb48596c8a3ad33c675a
MD5 43aebfb005ff375447401827b9db9b45
BLAKE2b-256 46c635435f4c3914a5fd24d4ea6ca7ec07ee9d79871ee834c9197360af7feb8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 477.7 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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e4edc4b720ec140b7cca4b2c5e573556090017ab0ab6e8b23a4b0677e28533ba
MD5 676f76be054d3387bbeae76867b77e4b
BLAKE2b-256 195c452a847857fc1eafea52e94b3632347a47b6eec617a7d417fe4b02ccd285

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 494.9 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ec8d93c854b986b5d3471e3f394c64e17db1729b0092891b917322e89f4694ce
MD5 f4eff0121aa72913536ee218c472d281
BLAKE2b-256 057cebeb17e11f60ef31fc7268cef47175d2c63ec19d0c1a472f989bf4af49c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 3b81af86d396bb252511b3afc3a4e416c68c25027e61b8bac8314880d57ade4c
MD5 782886be17851e9b04327cfcec953823
BLAKE2b-256 d22c759079710fb021aace4571efa6b6f2833feb557c80b62485bb46fb64caad

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed8c99d4c49532231a1aedb3e433f0dc3880e80eb40f65735497ccb956aeae49
MD5 efcae38eaaaaf8c00b244be3a2dfea03
BLAKE2b-256 33b3aa949c948470f45973b2da2fc01d475a2bc0a4baeef76946c9f85d2484a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb80438510323b5ca57a61c3bb8e92539fd07ef63ee7ad0bfdb961f020679062
MD5 9e74321de2b6997e668c513b78fbc70f
BLAKE2b-256 124bf30e57cd2f207eb26dd5fa475cb2b9b20b4a4cd2db7bfd4e4d3358fc5ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f502b6ba579558aa0f28fb1a14f4dd5f1e56fddffbe116c5650ea816f8771f9
MD5 0e6fcc1725bfdd8b722fa40990c822c9
BLAKE2b-256 690f2260402dcab2ac24a26aa01d625c174dea3e8c3e47f1c9559daa1b978817

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62ebde234fbdc917d55d4363af9eaea520f0153d3a81330cb09a1db2d71f5871
MD5 b70e8ae2ba4fde28c680e16237f2098a
BLAKE2b-256 104546ecdb831d8f2c39b27e33b1d07f4978e8861fb85c58274c20fc3e1e58c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1f7f73a94178d4ed3b430b9ef8f01a30f0880ce15076660e5dea82daad41938
MD5 37d7b63287eaa0923d687c7c3e544672
BLAKE2b-256 7a26bdcfe779c7f84edc104a0061c69da54bebf0b75d878115ead168bb2562da

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89c5d750969b3d958af828881a99aba69b37aff3032cd923fa93ee56c5c9d493
MD5 c85eaebdadcdbe0939241a30960e059e
BLAKE2b-256 ae3ae8283402cd33dfe65f9a7fe2afa34b95887a9d512406c9fead83566910f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 478.2 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4baadb37dd00310f3fbf0973eea9323c905ff5b651497b5062f425b366d47ade
MD5 5cc98f8b712d3e34ec8315ff479ca80f
BLAKE2b-256 8e83255b33c87adeec32ea3f37ec49fa0b94bad23446ff506be4db442219de5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 495.6 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 abace7df3f46b09af0431ac2210891c2ca734f097c77a9f605db873505fee51d
MD5 4b6d94b3d868d173cfab01d7daa797a5
BLAKE2b-256 85738c6882f72b44949b9e197a74edd38379a28991ca3e9054aa29a2bdbacbc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3eab9644308e39d1f49964ffced99f2bc000d934bf1dc24c52636ef078fb65f
MD5 6a1653c69d174326e05ea07c4d5c3967
BLAKE2b-256 b34567d16df0df803c584e4333d7db6983953d8ed0514237b795f9069cd349ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed3880b9ff851efd6fe7cc051b4243e3cc17df730ddbd52318e8bf5d7a2eca24
MD5 125caff2b29485e4fb430f98572f67ce
BLAKE2b-256 f3e84bca932653cd47648d15c457aaa4875878dd8a4c29fb320ba2cc501f16c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2114b44c10c28dec19f69948726e1cb0f42c2c8af0f8c1135feeaf548b76ce1
MD5 f776406545b9936f83bb60cf5cac6841
BLAKE2b-256 6b017aff856a1e149416baaae1fde083d579d55a492ec1d5a362a13575c8f885

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d61b11eceaecc1267dd18f4018ec154e42ff0a0db0fef5eeccf43b82642deb8
MD5 45a296d9a23e42e41c4f5d54f4b01664
BLAKE2b-256 a0d438a042bbb9a8b6abbb4c0c1ba4af1e6c466d93be126fd73160e4048dd251

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3987f72137f32759f99be8663fb2d503267fb007e7ae55dafe96da62d34ef329
MD5 b18a2b935001cdf5eb48708e10191b36
BLAKE2b-256 8f43e3b4f2e0a018402fa9559a7743e68f107fb68e67c92ff8fa9c7948c7d3ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 aa16e476ecfe2f307bbc57c2ad0c2b88a7c0401ecc3a8cde9ca388eb190fbd42
MD5 b160075d41911ef5c041606e607a825f
BLAKE2b-256 e84363e13279c4a329282f1d9037e7d7b59455dd17a2faf9dc7fe356a9e344cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 475.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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 cad4b609d54289ebcad567b3a7c8b4b46fbc0494310abd9a9ee562ae089c20c3
MD5 fe33a1efe0effbad0139679613f2c193
BLAKE2b-256 ae8723787c64e085fe364143a009a4c0acc54ae5c11aa02be96ee3191ad9fc45

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 491.0 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d1a37912a8c6de3584f42973439f92ef45244a7801e5bb509abd14c31766e142
MD5 8eded7146aca1906e105bfed914e548c
BLAKE2b-256 93e48cbece696b82221f264a683c27fe7a78f5bce2840182b637869b41ca5a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27a2cf8c3d5f8f0f85dc072c25c9c8561a19e44b885fe37e3d16ad39869ea722
MD5 33fffcc5d4799aa9fec1730b1cf1cbd0
BLAKE2b-256 7719361d1aaf67ce4bf0a6c941cf1201e7096eb82f8c7b02f2da4bcbd0b9417e

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d0957884ae7fbfe53a53618005fd8909d6d00dd0c840fe2ece37c7d8079c91a
MD5 a40b11023cf2c9420808bd48ed6a74bc
BLAKE2b-256 356533a39cea7663d20b4b2e6ba4b9a9f04ef25799f0662b25af5cad38d59fc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c776cc109e9719f4b330aa1f4c234a793c46a6718d64204b7733baa8570f6042
MD5 87503ea2a96755b05a25e0f0595a5eb1
BLAKE2b-256 27deedb4465ddb30d7cf69370888a7b2a984cfaf9a3f8b88590a15d1e4e01c8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a21a5e0e41fb17760c78ebb844394c4bd71a1d051129eef297277f11e5119a04
MD5 2c3121e990f536da58dd093146fc0964
BLAKE2b-256 44c6d91945e01c99338643e4f0f8bdc408cf0d888783813cec709156a63bbf04

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 385ca9a20f36ff8eb73402498f294a93b8854bcba199ea5baf6941a75c67087d
MD5 e0698c9d9eeeff4ea5da8e53221fa4ce
BLAKE2b-256 0630017430ab6ea3f01850422843cb628a1f3fbb31c7782368453497df14e917

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb8502000542877552a6eabc9589f8f1bcdbda31257e0f1c73646b3a1f97da9c
MD5 221d78c02dd548686ecd72efc60f5ef7
BLAKE2b-256 e4e4e2272f26c5afb51b1461ed224fc76e1ecebbe84d5b2ac57136d5c971b087

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: speedups-2.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 490.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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b387161de5e57623e806d3227c512a5e916698b9791b657d0b851b3192c4a320
MD5 3d7f07968798d8c4af8ff91b1f7e3146
BLAKE2b-256 4b6d529e1fc78713fd8cae0266db84ee80de40cac9dc9d8764c9f7855549e797

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97889e06ea15e0901d103f5e1222b0d99d514f001ff211cf8cdd1905083c31ed
MD5 70a20146b56ad20a5b0fce66214a3deb
BLAKE2b-256 fa1a76437311d65cbf2432556bf7e7ad1b23ffcf749d586a0b208cef0158927e

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbc871321053371b05fe5c124868dd657e4fdf99aa8c6e4c07365a032d4a4902
MD5 f6b7fd87597606350d1037c1a43d8069
BLAKE2b-256 0d238cf29b9ea9e3b4f89a1e433a50419fc0e94244f6236ae46b43cb63795fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af55f14ff43b03f995eecabfdafb91b1ff3b50b7fd18245de8ec8d871f5bc01f
MD5 a374ed9b55f6d827995b147ef5b5688f
BLAKE2b-256 15a28f4ad59328dbfa61504733053c944461c49f2a82f1f2f2c55fc0863c527d

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f57af8ea87dff2247d2c64167b111ab8876be8e163fe26329823d91136f334d
MD5 762293d998c66135d0f54d5f1a383882
BLAKE2b-256 99495903608c9e5475850549cdf11817c270f876700f089741e3c41588b6f9dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0a8371385529c86af52d97c6d147e293fe3994a361e999b2bd6175147668415
MD5 50357b99f5a7f9ee06ba36e9490e6a71
BLAKE2b-256 4cb78db24819b9655aff55869423a351f43655204b89f257ad69f473cbf0e9a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for speedups-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5168651f7683e1e93439c4d7433f854e86a2d53ceb084c5289f92cddcb60099f
MD5 58bc62eece51e6d445085a602c4ca3e5
BLAKE2b-256 b6055e069439de9d404bb2cad667a0f24235e305252c159c628be6febce7a7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.1-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