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.0.tar.gz (360.0 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.0-cp314-cp314t-win_arm64.whl (487.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

speedups-2.3.0-cp314-cp314t-win_amd64.whl (506.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

speedups-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (561.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

speedups-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

speedups-2.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (559.8 kB view details)

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

speedups-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (553.9 kB view details)

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

speedups-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl (522.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

speedups-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (530.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

speedups-2.3.0-cp314-cp314-win_arm64.whl (478.4 kB view details)

Uploaded CPython 3.14Windows ARM64

speedups-2.3.0-cp314-cp314-win_amd64.whl (494.8 kB view details)

Uploaded CPython 3.14Windows x86-64

speedups-2.3.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (439.4 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

speedups-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (551.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

speedups-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (543.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

speedups-2.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (549.3 kB view details)

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

speedups-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (543.4 kB view details)

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

speedups-2.3.0-cp314-cp314-macosx_11_0_arm64.whl (510.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

speedups-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl (519.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

speedups-2.3.0-cp313-cp313-win_arm64.whl (471.9 kB view details)

Uploaded CPython 3.13Windows ARM64

speedups-2.3.0-cp313-cp313-win_amd64.whl (489.0 kB view details)

Uploaded CPython 3.13Windows x86-64

speedups-2.3.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (435.1 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

speedups-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (546.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

speedups-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (537.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedups-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (544.6 kB view details)

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

speedups-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (537.1 kB view details)

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

speedups-2.3.0-cp313-cp313-macosx_11_0_arm64.whl (504.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedups-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl (514.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

speedups-2.3.0-cp312-cp312-win_arm64.whl (472.3 kB view details)

Uploaded CPython 3.12Windows ARM64

speedups-2.3.0-cp312-cp312-win_amd64.whl (489.7 kB view details)

Uploaded CPython 3.12Windows x86-64

speedups-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (547.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

speedups-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (538.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedups-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (546.3 kB view details)

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

speedups-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (538.2 kB view details)

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

speedups-2.3.0-cp312-cp312-macosx_11_0_arm64.whl (504.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedups-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl (513.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

speedups-2.3.0-cp311-cp311-win_arm64.whl (469.3 kB view details)

Uploaded CPython 3.11Windows ARM64

speedups-2.3.0-cp311-cp311-win_amd64.whl (485.2 kB view details)

Uploaded CPython 3.11Windows x86-64

speedups-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (543.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

speedups-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (536.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

speedups-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (540.8 kB view details)

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

speedups-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (535.8 kB view details)

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

speedups-2.3.0-cp311-cp311-macosx_11_0_arm64.whl (499.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedups-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl (505.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

speedups-2.3.0-cp310-cp310-win_amd64.whl (485.0 kB view details)

Uploaded CPython 3.10Windows x86-64

speedups-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (550.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

speedups-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (543.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

speedups-2.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (548.1 kB view details)

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

speedups-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (542.7 kB view details)

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

speedups-2.3.0-cp310-cp310-macosx_11_0_arm64.whl (504.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

speedups-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl (506.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for speedups-2.3.0.tar.gz
Algorithm Hash digest
SHA256 fd957811f30b7944049dab42578fa4f714f9b66e0d2a44712ceeacef34aa419e
MD5 6525be05016c56fb53736749a5c700e4
BLAKE2b-256 8199474028774d9622ce54db53077374abbd0248c44d1f3c9406e2ae77eb6185

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c22fc00e0d8ec77a35b81fac4913b3f35af90548695a3fcbb8e461ade1d7b855
MD5 1259e87360c3f2dd2eb5be9278d4333d
BLAKE2b-256 9234cdb25a784a4fe4e8bbdb6d47d91afc5c55a3ae010587338cf8905eafc706

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 928ad399be59a6ccdffe6fb9cf2e26c9d5786aa39b35f52c802eddb399e622ca
MD5 abe73bdd99d7b1bd1baaa4b769988eed
BLAKE2b-256 5940f3000d0264d3eab465b367475ac0e9f10f9c30acfa4765f86ac51d9a2877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e71b2ede75596ed38460ed26245a738f317f9372a26f4d329735c7d722af7bc2
MD5 257e4abf78aefd95e12f820ea402322b
BLAKE2b-256 fc1fb27f9cf6430add09e1f94adee66b7ccf3fd14b21e6846b3b248f24bc08ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 063e090772002a231ff776e6f4908f9a250ee95914f8a58237d1734dbd948abf
MD5 45564e8d275e3ad8e074b9cadb859a18
BLAKE2b-256 f017f2f4cb51435b0a746d2ce0c3a033e0d4db4e895c625e34fa6eae43714020

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 426a2bb9a4e07dbbf36ea350b52e06eba92b3b4d080bce99c290b058af6a2f80
MD5 613f6c00e7a69045c97789f5db6d0b14
BLAKE2b-256 837fab325ae0a31e268a6976ab74c2a893e7a74e029b398c2624c8668868edf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 074ccafe5a64db24c543868cecd2f078da2c1ceb7b55f2fb51d8c49242443c4f
MD5 5507369978e797eba82dbc89039193f2
BLAKE2b-256 6563649c82fbad810c039ac096cc40c66d7b4c4016d9bbbe6c1ba9b45adda901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6da804e72e272432da715cea22dd41ff9ce90ec775b745b3cb26b62db12ad906
MD5 8ab23b93373f5b99a00cdeb7d6a65d29
BLAKE2b-256 21751e00afc4a7bbd8ce523562fecc74e34532e44b0ff0f4a224baa32f6b680e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 681c6276a692445b313197520753b1db8c5eb204e82bded0ad54a1b0a09fcb61
MD5 23f6350a45a2dfd9436f43d13cb1ee2a
BLAKE2b-256 55d771d0d4594b17e4ca5a5f30d9b6037bc4a5b9e7cf17cf5a9cba5bd6191cfa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 09307695876dbff3719f02f50f1f47dfcc6fa04ad92f19bc68f7db22ef6d015d
MD5 d702dbb5ecf34bcbc83754f7c8a58d86
BLAKE2b-256 56cb42e681ae4fe88e79a79c4cacbfad33da8b8db499e68cd43166e39b8b45cc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ce1c11bd3ae31211ebb2207fb73b66c7d733d80dca72eefb627527d46bc7cdc0
MD5 d7d442313782ec603c28e3248968a930
BLAKE2b-256 ec6b6df798db08fa0946628eef9681083fc4620771453c97f9fb7eb3c58a04a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 cdc2f85df0d7ef728ac3fdc0d706b84a73e7675213f7e57ca6bc1b1150612b69
MD5 24987bbc129b99900010860ba0d9049b
BLAKE2b-256 b176f3636d1832c8b1b1c5adfcba1a607decedf7f8b455b59ccccd0e1344da4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 636da68248bb7475f61f3d17679072f744b6e3793d083c1fdfc19433663f735d
MD5 25105d725bae34b3f217a2cefd2e4db8
BLAKE2b-256 9c15c0c35e9b8a798209fb1899db2793d52716fc4967f3803ec4e084f9384883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7400ab041f32bcc8ca348814ae6b430192624f4bf9029a16897ac705e4fc0ab
MD5 64f277c5ccc48a8e0b5fa77a22cf2a87
BLAKE2b-256 578327ea9be0e86929e42a5b18ad4202d45f7141241820750a797abc763fc979

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffb0ac9ad5d44943516c45a05948ff4607274ce5d21a3139a31c2e5700ad3b09
MD5 eb19a1aa703c13021268ef6d169069cb
BLAKE2b-256 2b825341729a0998061a4a62367c47c1f542a2348d8987b8ba5acd23a2f9dac3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61ca5388739f3be13bd65ac6104dd7ef8fd007b881e39db9aa11845e10dad806
MD5 e3217efc3e1b3bce3826609cbe721684
BLAKE2b-256 a0ce194ef670f143c83781cafecadb7a71bac6915d3f3d76c14d64315da84ffb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f552721266a7a03654da84e999e458e6c73f630de0adab13f53bf92336be9c20
MD5 785a849c4c13bf5967d16a8d3604a25e
BLAKE2b-256 3d15db2fe0fc5a9ba9a6d64e6361c372c2b8fdd89eeafe2b602d0901535fc248

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 39cfc69d04ee54bb8c07f70fc06aaa48993e0dd35aad45c8af2af0a56bc2e14f
MD5 ffc474efa1aec8ae7f90f7e6e0c084fc
BLAKE2b-256 f49d0c06759614c2b9ae7412d6ab52b7f906e8419794b8fe1607b9739f978b06

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e6155a615e274ddfb8d19dcedd184f4fc66bdfeb01bdd7562a88efe6f95dec8a
MD5 22f19385e05751d3a79e9c23698e1aa1
BLAKE2b-256 3e7093ce8bf58f7640487ac2b8f87e96d33bcc7aa69ed3a640f80ee1689e7209

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d9f13bed64ce511d23514b829805ccfb4b9757b03139eb96633cb14f79d73245
MD5 7cc39dc12c161464bd68d748d420fa1b
BLAKE2b-256 271c2baf21e590e6b78a4e2332eea08ec0e22d338f4c6339ec37d1e2ee794a3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 2bc0896993a4869c2c7681a374249964e121bc537c58beae4dd3de30bd3ffa0d
MD5 da6aa5b2b4355a1da57123689b24d9bc
BLAKE2b-256 1b564593d0b27662cdd5c5d287241dad32112d69fa4f62925cef650b22ec7adc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6d5b4c09d40158e29f5e1bcb4b36c38a77c0793fa3688c8b10040ed036eb01b
MD5 8e07bf9ee87cbed488f4553d9550a58b
BLAKE2b-256 966c246f20acf1d034922c821060ba0073da4f3fa175ab9a1df67f40f3de69ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8a1673ada7f8af5e3a90fa17832b5eeb0b03aaebdc9b79ed31fb5ee78f99d81
MD5 b5589b956e3127514a2051da9b7d1260
BLAKE2b-256 56b1e0f276ece6ae4be86e84ef5114ac8ab33aee03cafd4224f8f14fd769211c

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f8eb03fe233443a32eb206e1b42f5ab7bdd9db6bb24ba541c6a53d186c282f3
MD5 af08bb5c9f8147ec3296dc909180576c
BLAKE2b-256 5b7d8125a258a1a44851d553a1b3f80f9e8a71fe86649e5cd509be6869a34630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d52d65c668f57772fde1c0dffd5318edcdaaf4e05cd605836003db185aa571f
MD5 519d1cefed666c83aa7f6b76ffcfa84e
BLAKE2b-256 6ca7fe140d2da909932f019b1311c9a3be08ab01227ba0f6b2d9e758465c8d1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f39a4876e445e33a99147b0495a1891c660c1c9bb1e9a360d8fb8bb2a90b367
MD5 83d9051ce6b37d5adda343522f5ed859
BLAKE2b-256 e93720ec3b5ef5cff1d180c403b4332e7dcf62ac2ba29d6ba775048b68456fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6d13aec880dbdc759b0d64f0c8bc368b367fb401587b800e0b0508fb276b19f4
MD5 964e19ab59bf3d6c6a75d28b5b1a3b1b
BLAKE2b-256 cb49ebd2a30344d3af7f80d1f7a91523d8177155b32aad2423b46fb0417ed14d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ca2468b86b44adf81e63f51cf517406ca154425e2b09d6d05efc43d2a813e194
MD5 e40f0bc06c24803136f9163538958827
BLAKE2b-256 1cc65b9fcfb474a7d2d269b4cb8a0a75fab1709c6216f07168f3b4dbde916ff0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3a237e218af137fca865980cd648859e63dc3d0a9eab7e58c87d3097ba71bc2a
MD5 ef262bd971e4795f02485c70650edcd2
BLAKE2b-256 0a92732d18d1c5019e3fe6191708227d8874d163672751185e0712f18ef50aad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2042796cfea7ab8fd0093815a5c666c799dea5e5d272ebf51bacfc84265303d6
MD5 465b320f6033f97e356d0e6b4389bc0b
BLAKE2b-256 03bdfd1fa72ca5634df3106357be79f8769326e4da7373cced85531ae1255207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b45db97f57573156ef44c4120ee3cb4093d9ddae6db0679933118e88d671ef2a
MD5 a35dda31b50d3c153746fcd7f13ee484
BLAKE2b-256 8ec9184dbb76aad7dbd4e0f81d6f257ee83e251bec58409a011fe3c686d1b09b

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c578a24955c4eed4758652aa589f656401a2f957dd931b007429dc9c26212d13
MD5 1a8fa3af7b348ce41af3d25049c7105d
BLAKE2b-256 8c7a2faa77592f27b425c87a3ded202daacf769a9303bce149cfec09158c03a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e01532710645f4a247c6a789e47d9392364617643d4d1ccddf24eaced9b1906c
MD5 5322da802770ea8609e97ce25ce4bff8
BLAKE2b-256 39576634e3e381c5f9f97ece7691610f54387089390419d372347f7f445512e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b42d89c5b1cbdacfa33ddc457f3f76481b321f59774d6524d7ced402a862dc3
MD5 d5adff15759fbca66aa291f4c8258e30
BLAKE2b-256 e2c7ab2e70acbf94a00ab2c3b8b6f50a98f9ee9c5e41c1080bd959fe1129c8a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7618b56c45bbb656b31b2856ce38075c4de2cd409978adc490b3f7d1c5490308
MD5 c405f0f74032eb183cb25c288f00ecc7
BLAKE2b-256 2c5e77cc0d899e9bdca3d458284c208510cfa79fb1f31e007086f06e5249f3f1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fccc5008b9fb8ee2b942065ce61e49e8d37754146fd7f677a6dede076235e341
MD5 f537ab98f4613c16405804457466196b
BLAKE2b-256 baa6e21a28cb15afcf286250df968a7ab4de7de44436b0646ba5895558673161

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5f47693c3d0bbea3c6af652e9f3b62a7caa4427a28294a2414bfe44d3a3d687f
MD5 503fa2baea071d517daf568ba886df97
BLAKE2b-256 3baa5b6379b2475465e919ef20b70d0bc4472ed7e2ce00ee30c2bcbae9eca338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 337526c9b74ac5f4b189ed06faf0962763d3e09e22bb18b4d9c87b7ebeef680a
MD5 4ac7f0087a34350beef4d0272ed70d85
BLAKE2b-256 00423e507bf89b5759adc3725df25d4742498f90c69cf8087b556bef6e11db90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dc072028cf9ac25db0cdfc3006d8518c5087ab7eebabd963c460c995474ae0b
MD5 a968965983ec20d94d7fa0d8659344fa
BLAKE2b-256 56ef2b3709b9350d63e7395393b42e58eb57b80ae1a9bcc4afedce1e7ae6cf14

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78e7ffb0f058af291a4b6ed8ff8eaa4a73bf6ee53c5209f9b6ce0809feca42b5
MD5 c44b700c871a3af706c0120b6f0eb65f
BLAKE2b-256 f68ee3f1b99285163394f72e81a129a5551361e5eb4da83c007eca83d2e8c079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa99227a83b13570d19fa5ea51a9bd5de502ae4ee1077ed1e53439f8f2506c48
MD5 7a0c1540b06096200e17d06198db197b
BLAKE2b-256 bf55a2b0a2f6d4486630f0fcf49c17ca4a569dad112a2f476e3737a50f4ad732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7387d9764c827e14cbd7acabe77ea71373e5e1ba527604fc2851d9b9f3d96ab2
MD5 a37be6cc1fc07319579d46d8f7117745
BLAKE2b-256 d42d2923f38a73e9b2e047d8a06d35cb5aa15e179b030e0f25b437c265919939

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0d291d7f5ce5223318fa4b006fdbf0b43328587f1abc2c1c88305c2f5bf2199
MD5 b458ed0a07e84de5fd95d3ba2363c9d8
BLAKE2b-256 7667919dae0551837b5da7e349d3871947a6f52832e3cab43008b7f413391493

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7983573dc35d3473701a1c8e432aecbd546d2f95ad3885b53a40e1c2246caf65
MD5 6687d68b8acff0ff9a55175f47beab3d
BLAKE2b-256 f6bb9db8adc1a64502269f6658450c45e59d18a0edd5d3010ebc5f1b968b9413

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89502333308c179efdf9f12c441e8e27af240f7c0745efbdbcda253a7745967c
MD5 b794a8e25bc5c7b5215983b27ece8d5d
BLAKE2b-256 521e42218a7eb6f7f59f3dd32bdad298ee758d4515b8d5372a1ba76b8ac67d84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b6fabe386a5ed7358da5c66903f7c46516c371b8946074e870b89349a2f9759
MD5 ab24041e3b065f087a1dc3c29072176e
BLAKE2b-256 0e7163428465d115d5dac98617377b5f7eb16c0ed2e5eb2317807bd887be49c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71daa449d8e6c3d04f06b6b4b86b91d27db56cb7bf1fb025807f4cd4a30a58c0
MD5 8cea0c255f7e94f2756f86fa43a0cd0e
BLAKE2b-256 a707e3fb6ce7fa72d682ed20498b6a96529fb2a3a5d7818c976e362baf17824c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39381641523576357f326ff5b62f7ad6c7bdbd55b9c30bf216bf38343f0ca846
MD5 eff959176e90643c8b73fe306e26a771
BLAKE2b-256 f0484bacd784495ac02b1ece6c160f0241c8ec5869114568db640f2f9c69d7bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 164265ca161f6b3cc0f0f51dad21675f5dcb4fad98801d419c35a7c210fd4d90
MD5 f95b061f3761aec175f33832e0e2ad9d
BLAKE2b-256 e8e72b47532c20141f0a0249186b1afa3a299ebf5da9a4bcce64f3f75f7a1399

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e969aae6512cd10ba2e49b5fa2e60ac952ec18f55b9e03db4f8fb4354a8081b
MD5 b493fffc322684bf2ba89586ad155cc6
BLAKE2b-256 0a97a0b2781e6d24c73fffa1f4cf7050d030a4c8265e859048507e081b54a101

See more details on using hashes here.

Provenance

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