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.3.tar.gz (25.2 kB view details)

Uploaded Source

Built Distributions

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

speedups-2.3.3-cp314-cp314t-win_arm64.whl (142.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

speedups-2.3.3-cp314-cp314t-win_amd64.whl (160.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

speedups-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl (217.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

speedups-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl (212.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

speedups-2.3.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.8 kB view details)

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

speedups-2.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.0 kB view details)

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

speedups-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl (177.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

speedups-2.3.3-cp314-cp314t-macosx_10_15_x86_64.whl (186.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

speedups-2.3.3-cp314-cp314-win_arm64.whl (133.2 kB view details)

Uploaded CPython 3.14Windows ARM64

speedups-2.3.3-cp314-cp314-win_amd64.whl (149.7 kB view details)

Uploaded CPython 3.14Windows x86-64

speedups-2.3.3-cp314-cp314-pyemscripten_2026_0_wasm32.whl (97.9 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

speedups-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl (206.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

speedups-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl (199.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

speedups-2.3.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (204.6 kB view details)

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

speedups-2.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (199.1 kB view details)

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

speedups-2.3.3-cp314-cp314-macosx_11_0_arm64.whl (165.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

speedups-2.3.3-cp313-cp313-win_arm64.whl (129.0 kB view details)

Uploaded CPython 3.13Windows ARM64

speedups-2.3.3-cp313-cp313-win_amd64.whl (146.2 kB view details)

Uploaded CPython 3.13Windows x86-64

speedups-2.3.3-cp313-cp313-pyemscripten_2025_0_wasm32.whl (97.4 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

speedups-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl (205.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

speedups-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl (197.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

speedups-2.3.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (203.8 kB view details)

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

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

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

speedups-2.3.3-cp313-cp313-macosx_11_0_arm64.whl (164.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

speedups-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl (173.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

speedups-2.3.3-cp312-cp312-win_arm64.whl (129.4 kB view details)

Uploaded CPython 3.12Windows ARM64

speedups-2.3.3-cp312-cp312-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

speedups-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl (198.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

speedups-2.3.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (205.3 kB view details)

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

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

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

speedups-2.3.3-cp312-cp312-macosx_11_0_arm64.whl (163.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

speedups-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl (172.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

speedups-2.3.3-cp311-cp311-win_arm64.whl (129.2 kB view details)

Uploaded CPython 3.11Windows ARM64

speedups-2.3.3-cp311-cp311-win_amd64.whl (145.2 kB view details)

Uploaded CPython 3.11Windows x86-64

speedups-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl (206.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

speedups-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl (199.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

speedups-2.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (198.6 kB view details)

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

speedups-2.3.3-cp311-cp311-macosx_11_0_arm64.whl (161.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedups-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl (167.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

speedups-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl (212.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

speedups-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl (205.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

speedups-2.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (204.5 kB view details)

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

speedups-2.3.3-cp310-cp310-macosx_11_0_arm64.whl (166.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

speedups-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl (168.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for speedups-2.3.3.tar.gz
Algorithm Hash digest
SHA256 1ae20adda8ba8d52355595750c021ce5c87f1ccf921399653bbe0d73f17a37bc
MD5 5173474cd929690b55a361892ada93a5
BLAKE2b-256 14f4789280152711bf61fb4ae5b5c10cdfd8212460161a3bac9bbddff4132a42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 142.4 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.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3df0a94690c10d57c4c3db5bd5022e52e66463be472e1a4466436037150f946d
MD5 e082fa9997f9ee331354f6a6390f6717
BLAKE2b-256 88baa6c58b9a74e4900c1447b6b3af99ba93a026b3526911e4f619f70596f905

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 160.7 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 81292fa59947b3be647f11ba3c7b292d7347a50a607941623e2bb1b6dfad0ca8
MD5 e2a08d37b20d2fdce13ca9f905c6eba1
BLAKE2b-256 083cb97c94b00bea612c8ec527bd20ff86240cdd012fe0367f1f39488ba28cf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9eafd8bd478510c35a2acbda5f004ed863537830863d7b7f1821dd7c0000b4c
MD5 cd8e5805e7de07d93ae5f85071f522f5
BLAKE2b-256 bf5b7e4192b067a336d44d4cb1abb389f49b654fdff6aadaa34eb8dcd2c82ff3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 396972d6b3a4440891ad29a2f5115fc53605f150213d0ce1dfc2be369e8fcb74
MD5 65472998dee25deccad3d2bc89bebb69
BLAKE2b-256 685d93584328b7854b88f295adccebd0220b4f90e4072bc8a0e3583b28938e45

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33c52f287ca02b52ec663cb3d5cc95f408d13e9563061a0fd959f84f95759927
MD5 ad5dc70a163f3f55d0079eeae441c38e
BLAKE2b-256 97c9b7737804ff641c1b32e8a8e8f2391f644ab048597b2c0d9f4411a5ffafe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d82a763d7d0c1aeaba5097e374603c0b9c34e3203d656094174bcbe538fd89c8
MD5 87fe2764b09c90ff54409ced89ae866e
BLAKE2b-256 5191dbe2170887e51d92481bba488287262fa94b8a08084fbcbc393d2ac35a79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdccd86987bd6270bb4fce25287d5316972b5fac4a31360115b6ea5bf9eacd62
MD5 6eb8f186327dd07169800599d116449e
BLAKE2b-256 2f4ff100f8cc388c6a63215f980368d801bf13e7d9908d0c21604dcb8b9f9403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07fb54302f610c92e522d034c3ca89e49bd63c3aa833c2e28f127b17b9a43786
MD5 9f8a8916837871e4e91320e6da516aa2
BLAKE2b-256 82348843da57fee713588e896f2ff80a19266df71dd9c08158a0f428304ffcd2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 133.2 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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 34636b1fa555bd7d85446b932a1c339e7e1b69774ef45192b1f605bb1328a789
MD5 12a1ec515a5e4fbc5b3329bfdcc3f36e
BLAKE2b-256 fa717a2b4ab5c3555b1f5ba2d6548a3a762dd006e49530870f0ea416bcedb782

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 149.7 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0be47601e08b296d91bdb0873518c666e5bbb0146c83026df7a6a17ec8d64129
MD5 b0ba8dc5de94a258205dff8a625994f2
BLAKE2b-256 f6b3a350f268c7552ed6bd1c7e7e04dcdec3bb7105a0a4513d333418e8c4d8fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 3ab171ef64e18b60a6e800164dbb05a33cce802fd92915a85d1a974d04c3af64
MD5 2e09ea0cbba513c1ee2c17e687629255
BLAKE2b-256 ee3fc97a31637e24f34a18ce8d9900daf0b6c01a01b1c8dc4b9bc3ad94a755a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42affe34858eb57538b54617ada04072546a9a8b4f676628bbb73ea8f4635503
MD5 a7564a5087dfc4ab8fb40e2e46f2ed01
BLAKE2b-256 7024e50e32aae7a1611ecf4fa4f31213584a1cb06d7db1abb9f0976d168a8a4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80a2bfd757d4cd52c112db3116e59b4bfe3b3d465e0ed93e811dc9f158e678d8
MD5 0a7eb4bb59a7c70399be16204ce948f5
BLAKE2b-256 9e4302acb4b6bbf344db3344ae3c004a0123d173898e3a8af813a582f4200d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88b07a63d943777e9a661bb5e5f8ce4edb50842c30059d62f288290dfc1a2037
MD5 bb0faf750ad6154b1ad1c93712376f51
BLAKE2b-256 a186fc59190f8ca5e049c1cf18c5587d4351aa208c0463de53de875c8392b044

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 938bfb76b2c4c1781e96219563f3ffc7533c629d1eb4c6c0e66e895aadd4c533
MD5 d3be3674ed06aca42d9d7f90414b37f8
BLAKE2b-256 7e0cb78b1802798dd31f50e022bf163feeb07c1449b807dbc1314fda10f378d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaa9b1b26ab124bcacdc2f9e60ea29dc717d66fbc29c7f0039d1582dfbdbea2a
MD5 2fae210421ee79d08ee899fddc24c132
BLAKE2b-256 27ea3b3b00261199fb3561e156ad3abbff5d74c511e7006b8f98c49e74812de4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c97feb6dc72ecc182b31a2b89a013da03e18d7e2f4dbe50f263714b186cae3fb
MD5 155e8967dab60870bf983ac274b3cd73
BLAKE2b-256 8784154360cb6fd347dcee33ed43adc20be24592155c0215d88d1b3417eab9bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 129.0 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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7c5f16d1fed5824a405d3e98b1a07d38ae4e3a26ef3030b590ed75bc411aee63
MD5 a2512e498c9e0cc71aea3ca52f69e800
BLAKE2b-256 ba2789bc75c5fc4acf1cac71b5ba6ca9214346223bbfc89a3401768ea4a378a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 146.2 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 774bec8accb9fd2a74cd1d01370c0eefff972e0935f7c6840dee5e74566d4060
MD5 7c52d6c1f1e69a0662c28c3c9646ae80
BLAKE2b-256 788b78e0f69cac39d9630357fd170db44c18f46e9f42bf022606a908d3997343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 1933687e3777e9f33b4a357deb4e99b1d38340e6d2a2d68930d790ab6a559506
MD5 cb689b87b32be9c1de48326b8e2ec3f8
BLAKE2b-256 c76ff6eeb7b9a4f8471d4f8965a5642bb8a41615fcb98ac18dac5c64b6a1c218

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf9517f24d6bd8b9b205686e610105577d17360881dc8559fb835dfddb67bf28
MD5 a6f9a75a167c4d64aeaeb8a79cd65025
BLAKE2b-256 94499a8021896b44b607a45dbbd9dbd1852fa1f0ed8efaec72bb5708e5121270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7950a610905c4aa4b8cb018de33543a1428ecfc079c06196b70f9adddf0ad8a9
MD5 aaa32a0c698a6090c8e80d14c1a8b78a
BLAKE2b-256 c1107b8e2665dcc769e0dfa4353bf09f2939ee39f5ced880a4fc44d6a68504ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 184404c79ddff221ae03d7cd441f49b86fc4edde129e31a9acec73d579d29a72
MD5 1d672a01941e31540951e6824aba4b75
BLAKE2b-256 f75b8bf09a0690ea8f5eb422107b8d4db00606e794caebcb187609979fa23f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d310c3215f5727c8da678f140b2fc52bab42368c52dd6e0c1993be0983a5498
MD5 b6af5a11b2267a603989c9459f610a22
BLAKE2b-256 0f9731abae1b7d5dd29f36657cf2444b925a9934cf9eaf2d47fc773bfc8ad83f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 979360788beb00e10b3b9d51e00cc7db7d6753a55b07e2086d1fb28bbcbe843e
MD5 5ee1ec92460d642d0d6569ca507b3b0c
BLAKE2b-256 6c4f5d79014a762728027cb4d003afa9efbaa5ef6ec28bb4ca1bd9418bb2f533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a62a53aebfbcacaf7184c807bae95db2110aa9beb6448b1892e57fa489bd38d3
MD5 c5ec53167b4e4a278f99b6be8e7e94d3
BLAKE2b-256 29eddcd7d691e8497181000cbccdd29afb4419aecadf8e121d8dbb7401fad7f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 129.4 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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 243af553b016d5bbd3339dba01095a2a4b920e04e93f384ff7733c94179663e4
MD5 0e4ab081d0f4be89f2ac591927fdadb4
BLAKE2b-256 be5715e52a2726415a6cea2c141740b0a7691a6acec3efe678bc89b18dee6742

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 146.9 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e6ba73604a1c91355a6f56cca79e8e3823ee0f886e48f1647c8098ca7f41e5a5
MD5 55b6584a5bece33f59e258468119860a
BLAKE2b-256 240c4e1f53298764b8e38af5c064546a4a491abc026cb817e4748fb83b02fe29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b8c4af853e093d89dd57f24789717b68dcf0c9133d672a47b22210e45037527
MD5 3de58b39a24c4d2aa4ac7e3ce8e4ac9e
BLAKE2b-256 4ab5a4d6f91cc693c9b9eea8f2c98b54ea04d8dadc0001dedb1db4cf762fcf2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a94a99e835e46bbeb1e6c89acd621cca52c048e42d5ff9d2a5136cf65ec3e37
MD5 9f0e4cdb7b8ce75ba0ca3cae62db43bc
BLAKE2b-256 e3e096fd0c012ab2563ed07a22a8633faf90f7e62aa806fa9ddcdd147abec3ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78223df48a10288c7c5a8e970202ee0b1d7e3e63feb3648a1cf00b80bc7d88f5
MD5 2b8fc1edf487659215e51ca3f394ae0b
BLAKE2b-256 3f9a08d5332dfd610b8e00a4396a20c811e7da1ac32d8b606f5885e267512b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7e980df17ca2d2cf4883ded83a7efaf07f6fcf26707bded2c3c69451dc5dc6a
MD5 85d6f7d8e263739c9642fbb955337ea6
BLAKE2b-256 ef1723bf138f602989bb336d802f29ba65e836d77551260c3b6bc923761ad035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ce9ace545a76836b90c32eba142334e370dee1744c857ded9e01c61636e785b
MD5 3fcf1032bf734f9d99ec1d73daa7acd7
BLAKE2b-256 5f0fe2873e40d2093dd143dc4e11b4331de2054331e1c2bf9cbd5de8b6372b05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 94273a7fdf6f752924db98564c7ab29e96dcd3effaafe9357e074cb33501affc
MD5 8baaa61bf754d6f00b50551a289181bb
BLAKE2b-256 05382183d195274cd9bd5867caeb92b32987906bd1aa37b03afdc0005abed6d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 129.2 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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 98816269d639a2775c45abbe3499d8a6129bb480c5101ae535d3e8f542650110
MD5 95051eb1c8eb2b37665215f8e47bf1f9
BLAKE2b-256 6d65b244f6ab6b47e3ace84ba40f44992f1d3e4d51be880fc61f0f111f01f3a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 145.2 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 73ba48209d7fcc40eb8d94a6adf857258f4857ac0f8e15e354f14e6398fa004f
MD5 dcf40bca0a13de80e3b1ea8e7569022a
BLAKE2b-256 5f58d3673f718e090484fb02ec243ca58e02065b24b504e80d258eec677b1d05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0f224baaccc1aabe336f7229017dd3d3549b1345039d0404870343e648e2fd5
MD5 ea3d90c00f5ae434fef44aff998102d2
BLAKE2b-256 f1b541fc2246f461458ee8ec0cb882d3c0e4104246f2e620013578409659096c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75b16337f8af42bcdfc0ee7c9516b2f386d23f67245d6619098524c9a3c745b6
MD5 357022bdc9befdd9aa3efcc8d398672e
BLAKE2b-256 37c5aaf9625ef302b1a3680d284695f8e2c7765b2f18760bda68a714f280bc41

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83798f96842a930e225581e244ac0cacfc650bdb1fa86ce7f68d102b6681c393
MD5 f61c44cde9543d411762d8dda6760752
BLAKE2b-256 f9c6ee889a1b02d911104cf2abc9fe75b15465037ac34bef552873332c39f270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8663501eea2c23be5535011fb6ed648563007d9e4f37d56491dc0f64e255f21a
MD5 efddba69c3c71efd2d6f653d1857da66
BLAKE2b-256 d707f28ec4853391e646cbe3027e9ad77a48042c7220be50628e1b0038f3ddf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 830250fb523e55dab82c246b7981c065f7a28253d1c2272f428df8a684431df9
MD5 b36128f449360ebea23edf4ef1b94104
BLAKE2b-256 9b80d926a60e224e7a16f64b95fdd64a55a75662e14e93e8c401feb878935914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a69578673bcc7fa01bab03c69022b856ec1726cbbedeca0e155046b7f6e0b561
MD5 45d61e381ff24ae1f8a602fd8a744a9a
BLAKE2b-256 17151f51ad9adc2f03a1864648fc530753334ed3bb38b89ca1455203045bb98d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for speedups-2.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1a9c7ab2b7d0b779a69133e4f89b6b95b3d4c730ac026f018ed33c51bcd0ce68
MD5 aa2bfd0c442e5923bd2776f947ab92cd
BLAKE2b-256 fb689a7f66b6ceae9f6b6a2aa1423275cc874348f945f090e25ce0a3f86c6d31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18c46b4971c3e857e5be554a6a888bc5124c6848608ba65169e6714733697f5b
MD5 44163f7809cc0dcd1011482e135c80e2
BLAKE2b-256 cf0df38b9ba4c201444354b42dfb2205cbbf3ea8b90f0df85dc4a6580a17f578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38316ee595037b54d45c61b761c393791b18c17db89079337c807f82d7187248
MD5 4ec4c48a47c7d3041083f4d1a53d2d97
BLAKE2b-256 39a341265ad7ef50f08161544dc5dfbbbee1333ff6ac044c56ad1feb395f2099

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.3.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a34d16236b96c1bd6fb4fc5407ad1adc56214cda00677184d9e099acf3b03e51
MD5 3f112fbc6912adf28221026c092c25d4
BLAKE2b-256 28f8662a3be470b44da3d066c3b1c960c22f459bbb94638248155fb1043f662e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0226cf6db0e482215c3d648ca56a5a01d2ae9baf9809c395eef8733efb62d517
MD5 058634a1e83605036abe836d70e0d6f7
BLAKE2b-256 578533d4b763d7248890f9d25b46e4d9d06a879b5b81670a8074b8983e4c0aa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb5738c499497bdea099a20029343d987add866ac546d59442ab162a07d1eeeb
MD5 ab12ea765ac4851a026b45c6e2e5598a
BLAKE2b-256 1986f6bd4bd31ac2c18ff1effa3caa950bb115f96a242fd24b71814fcaa1542f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6a369ab451cefd4cd98f88c12ff8006031a100c2dc6b5aa9f94c11dfa466416
MD5 234a690aacab5e2770fe83a32eb10e32
BLAKE2b-256 396876e9810e0e690a64d621c416b664995f927d58ff3b906fa0a91317aca955

See more details on using hashes here.

Provenance

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