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.2.0.tar.gz (359.9 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.2.0-cp314-cp314t-win_amd64.whl (505.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

speedups-2.2.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.2.0-cp314-cp314t-macosx_11_0_arm64.whl (522.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

speedups-2.2.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.2.0-cp314-cp314-macosx_11_0_arm64.whl (510.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

speedups-2.2.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.2.0-cp313-cp313-macosx_11_0_arm64.whl (504.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

speedups-2.2.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.2.0-cp312-cp312-macosx_11_0_arm64.whl (504.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

speedups-2.2.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.2.0-cp311-cp311-macosx_11_0_arm64.whl (499.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

speedups-2.2.0-cp310-cp310-win_amd64.whl (484.9 kB view details)

Uploaded CPython 3.10Windows x86-64

speedups-2.2.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.2.0-cp310-cp310-macosx_11_0_arm64.whl (503.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for speedups-2.2.0.tar.gz
Algorithm Hash digest
SHA256 33ab4f9cd740b1e07e9c42ccec174de51e56ba8675448908d0c6b7a2443c7918
MD5 cbf56632416a7b572e76e57e849084e6
BLAKE2b-256 b5a59509a16f612f01cf7f01c4f6400f7edff70ebe2852747b06772a06032e96

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 505.9 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.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 809043278460b2f09be76a24f23fa787efa1fe6ef3f2200623c6a7bb87cd8daf
MD5 fe5da596f45abbf18220580ac23f5999
BLAKE2b-256 9d567403d8d90c539a4c387aef6a8e3eece120d7157d56632a37796a8119c32b

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.2.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.2.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.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6a7b5a6a5f4a3541a36390f65b6bf2210a95579326c461c603d800699a27351
MD5 c82e50247c7f74d987f64e791c52604b
BLAKE2b-256 17eb59c1df0f69382bd5c482aa31e89fb1d20b3b88ebef1a2ec8c5b54281fbe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 826de11456ce0dd6547a577f4be2c767f2b68142fcabcce61049fee41bb0c971
MD5 d7aafc4543c79de05954503c0607cc54
BLAKE2b-256 62f5f12e1d90339611969aba0bdd596e88b74a385110fc038b5fc6619fc20322

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.2.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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 faaad3f409acd11c8c08da61240ce0f8bd26e67ea4db300551d6ddedf1b2b7dd
MD5 a359a654b07a858965227ef823c5d16e
BLAKE2b-256 670658833b08ab0ff246215de22643c223198f6c4539fb08ab7286939e6856cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.2.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.2.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.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d8d5264b40fc33e59d05d73b6233cc7819e8c9a9740eb3f03a0f33fa296770f
MD5 b66b19cf70aaa3388187c66073a59c15
BLAKE2b-256 a2a6c9d96698658afc2ea66f72cc855ab48f834980294160bcda42a9c892ccb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d871eadc0a50fdaeadbbb019a1957a2ddd062516240f90345b03a9ab5431f89
MD5 25b4456121c2193ad4b33db6805bea76
BLAKE2b-256 7f2bce0fb9cda727b976030ec28ebbe08e359d2f5041a3fc06445f87fb44452b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.2.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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c997cbd908ea98c85bb8bf663f73385e219c598ab13ff93c40c37a080d1463f
MD5 335a9e716f1584fceffc923e28f127dc
BLAKE2b-256 c77909b74a60f0b2650e43173c9a27a652700369b8331dd49918827cfab66d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.2.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.2.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.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2727daa060b8957f6627351ca11c44d6bfd785c03e010ddaa617708b11edcfe5
MD5 1fbaa76f4f38f0cdda53879278add72f
BLAKE2b-256 f277710e096caee1302cc48c68cb0aa2b120544361134400c0d6387673b62e72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 707b3eaa63bf23e349e5732d80bc3eb9250acff37e759bf01de052f5bebce1e9
MD5 bb38f4080bda95939e4a4c079eb1c978
BLAKE2b-256 cdd5c524356ee4fecf65c94c8684008eb226cdf18cfdeac10a46679f64ca0df0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.2.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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 550ee9c17d2620357270eda31f248bbc6fe8ba37a32de05c1b36b32abc2248ad
MD5 d6bc0ef933adfa7466298d881a9a9415
BLAKE2b-256 80583c3841f4a3a05e155aa0c0165d04d17dfe8cf07c1bbed033c492a6d0bede

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.2.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.2.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.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f6c49178f86c16a4a033e2ed7e7f0a8845034963d586b4bd8e9335c7aa7ea5f
MD5 941025d6bc1ef52575f5fc5c6b308160
BLAKE2b-256 cd7fb23424c8dd6e47ead56c45fc0ca569610ce62bda5236e9d6ba5c3a49bb8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10261325dca534701ac220e23485b3531a5bb23a1a59959f113541ac39cc9385
MD5 fc45a61805906de07f5d2871638e21af
BLAKE2b-256 584b5e43bb0dded6c6b89e7571b575b6360e4e6943bae00c8bea5ad020c965fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.2.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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 153b3793a9bf044d751a8aa2c3edcb80e1fc8ffbb102ab679fb1a29f4df3ca37
MD5 887a908c49cdfd680e49bdcd8b420992
BLAKE2b-256 6d9d76474f7e0fd6055804a4094c06afcf2cbc5d1243d4d4c50b55cc518520c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.2.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.2.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.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c56950e6e6377b92f82de8854f57ce6e5cbbd6272c99e2d0a9d4c95988e81d3
MD5 f46a108501bca415e25df1650733482f
BLAKE2b-256 6aa6183dda1cb07388c29861c857fbb916b1b6591a41eed325136fcb31721047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d25a4b06152f77a7362cf5c23ff68bb9208a1fe5a89537b3018beb17768230a
MD5 3be79505c72a7f5ad83f0ab794ccde07
BLAKE2b-256 2ebc8965472219da4b588e64a5fd23a308fddcc7b336836046d70cb987487c31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: speedups-2.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 484.9 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9a309cfdc95aad117e2ff152da40149955be11466cda00c6d21efd8051e25c85
MD5 6e853196fb5de6ebc5b6bfc35dbe60a5
BLAKE2b-256 fd440414e368e3bd52a51f000fa486bab91e0666c31f70ee83b38ef4f2deb6bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for speedups-2.2.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.2.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.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e143b9e4aac0f84b41e2a04e564f2c598fddb800f6548d4e1af1552aab9ab11
MD5 1f7a7023db65cbed98769397b95ad872
BLAKE2b-256 93d602c10d4628c4a040c343645a9a4966cd037a0e409a20f2a78e75f7b879ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for speedups-2.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 393951aaadb787928f2d344d1cc1970f01834bb7ee4f229b830bc898cbdc50f4
MD5 9ca47ae389ded27cacc63f14ff70230c
BLAKE2b-256 2e0946f876952208edf92f77f467e1fa34d371f7c805de757546794e5283db5e

See more details on using hashes here.

Provenance

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

Supported by

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