Skip to main content

Drop-in accelerators for scientific Python packages

Project description

autozyme

Drop-in accelerators for scientific Python packages. Each accelerator is a validated, monkey-patched fast replacement for a hot function in an upstream library (scanpy, scvelo, etc.). Install once; existing scripts run faster automatically. It bundles no datasets; it accelerates your own data in place.

Install

pip install autozyme

autozyme itself has no hard dependencies on upstream packages. A patch activates only when its upstream is importable in your environment.

Use

import autozyme
# autozyme 0.3.0: 16 patches available, 4 subsets — autozyme.activate(<name>) to enable

autozyme.activate("scvelo")
import scvelo as scv
scv.tl.recover_dynamics(adata)   # uses fast version transparently

Supported parameter scope

Each accelerator is validated for a specific parameter envelope. Supported parameters (n_comps, resolution, the data itself, …) can be set freely; a handful of parameters per patch are not on the fast path and fall back to the upstream implementation automatically (correct result, just not accelerated). A few documented approximations are validated only at their stated configuration. Each patch's supported scope and out-of-scope behavior are documented in a SCOPE.md next to its source in the repository, at autozyme_py/src/autozyme/<patch>/SCOPE.md (github.com/ElliotXie/autozyme).

A few patches accelerate version-fragile upstreams that bind one release's internal API (e.g. cell2location, pinned to 0.1.5). Those carry a tested install recipe under "Tested environment" in that SCOPE.md and an opt-in extra, e.g. pip install "autozyme[cell2location]".

Opt-out levels

# per-call (only namespace-fn patches; class-method patches don't expose this)
fn(..., zyme=False)

# per-block (works for ALL patches incl. class-method — hard kill switch)
with autozyme.disabled():
    fn(...)        # uses captured original
    other_fn(...)  # also original

# per-package
autozyme.restore("scvelo")
autozyme.activate("scvelo")

# session-wide
autozyme.restore_all()

# never activate (set before import; `activate()` returns False without binding)
import os; os.environ["AUTOZYME_DISABLED"] = "1"

# suppress per-activation stderr marker (keeps logs clean; banner unaffected)
import os; os.environ["AUTOZYME_QUIET"] = "1"

Multiprocessing workers

activate() binds patches into the upstream namespace of the current process. Fork-mode workers (default on Linux for multiprocessing) inherit the bindings via copy-on-write memory. Spawn-mode workers (default on macOS / Windows, and what loky, joblib, concurrent.futures.ProcessPoolExecutor(mp_context="spawn") use) start fresh — they import autozyme but no patch is active.

For spawn-mode pools, activate inside each worker via the pool's initializer:

from multiprocessing import Pool

def _init():
    import autozyme
    autozyme.activate("cell2location")

with Pool(4, initializer=_init) as pool:
    pool.map(work_fn, items)

joblib.Parallel(backend="loky") uses the same pattern via the initializer= arg on its underlying executor.

Threading

autozyme.set_threads(8)

Status and introspection

python -m autozyme              # one-screen dashboard of patches + upstream availability
autozyme.list_patches()                   # ['cell2location', 'obspy', 'prody', ...]
autozyme.list_patches(installed=True)     # only patches whose upstream is importable
autozyme.status()                         # {'cell2location': 'inactive', 'prody': 'active', ...}
autozyme.inspect("prody")                 # detailed binding info for one patch
autozyme.env_snapshot()                   # structured dict for provenance / Methods capture

Citation

autozyme releases on GitHub get a Zenodo DOI. Cite the version + the patch name(s) you activated. The activation marker logged to stderr is the canonical provenance record, e.g.

[autozyme] activated cell2location -> 2 target(s) in cell2location 0.1.5

In Methods: "We used autozyme v0.3.0 with the cell2location patch (tested against cell2location 0.1.5)."

License

MIT

Project details


Download files

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

Source Distribution

autozyme-0.3.0.tar.gz (262.7 kB view details)

Uploaded Source

Built Distributions

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

autozyme-0.3.0-cp314-cp314-win_amd64.whl (289.8 kB view details)

Uploaded CPython 3.14Windows x86-64

autozyme-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (337.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

autozyme-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (338.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

autozyme-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (342.4 kB view details)

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

autozyme-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (344.4 kB view details)

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

autozyme-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

autozyme-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl (290.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

autozyme-0.3.0-cp313-cp313-win_amd64.whl (289.5 kB view details)

Uploaded CPython 3.13Windows x86-64

autozyme-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (337.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

autozyme-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (338.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autozyme-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (342.2 kB view details)

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

autozyme-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (344.3 kB view details)

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

autozyme-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

autozyme-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (290.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

autozyme-0.3.0-cp312-cp312-win_amd64.whl (289.5 kB view details)

Uploaded CPython 3.12Windows x86-64

autozyme-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (337.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

autozyme-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (338.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autozyme-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (342.2 kB view details)

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

autozyme-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (344.3 kB view details)

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

autozyme-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (284.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

autozyme-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (290.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

autozyme-0.3.0-cp311-cp311-win_amd64.whl (289.6 kB view details)

Uploaded CPython 3.11Windows x86-64

autozyme-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (337.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

autozyme-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (339.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autozyme-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (342.7 kB view details)

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

autozyme-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (344.7 kB view details)

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

autozyme-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

autozyme-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

autozyme-0.3.0-cp310-cp310-win_amd64.whl (289.6 kB view details)

Uploaded CPython 3.10Windows x86-64

autozyme-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (337.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

autozyme-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (338.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

autozyme-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (341.9 kB view details)

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

autozyme-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (343.8 kB view details)

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

autozyme-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (284.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

autozyme-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (289.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file autozyme-0.3.0.tar.gz.

File metadata

  • Download URL: autozyme-0.3.0.tar.gz
  • Upload date:
  • Size: 262.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.5

File hashes

Hashes for autozyme-0.3.0.tar.gz
Algorithm Hash digest
SHA256 c571cbd4cc80ad37c26f690bdf06104eae9de9d541c6d8d8421b31f8e4542c9b
MD5 047de2942b07fea7e68d340cca7d5b54
BLAKE2b-256 14945025e355edd3334501153ba23fc16915f95ed1bf3aac8dbbafef9fd5903f

See more details on using hashes here.

File details

Details for the file autozyme-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: autozyme-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 289.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for autozyme-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 66885ecf94e397fb1d3748974756a389dd3c679f4d73d1b8bd5020313dffe650
MD5 430898fd8e9d331dfc3c1e5cf2c3400a
BLAKE2b-256 93468534c5f7f6b61fa46dcf7c8fccc46132116b401c4114e97646fe0ab9fbc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5abd6db7c07c9616924b885125008ddfbe7027c8ebf2f9322df04709c215fe9f
MD5 478b7df7c2bd2d2864ad20d002c9612a
BLAKE2b-256 90a810f9eaf608d50ca4c1036617936ad83d014f709100b587df6ec982eb0f8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab71da9ef14fdddf15b9b286e3fa6aea4627d655df7ad8d354b84e1692dc792a
MD5 3b15e065421818c18018b6eae2917298
BLAKE2b-256 e98df4555583ff1a611467f359f4b3339d961fac0145f99609e50416dcd33718

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fb98f1caeb39091fe85488cf5d2d526062018155b263d078572a2d7c5bc05e3
MD5 a91eb3a5a592189e83ec732af39ea467
BLAKE2b-256 c53176888c158b70b22257c6c1a33b78e9e2d0cd014cda11ae0be37a4f8c8978

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 938b9775fe735cda20c621dcd3e08e0cadfdb1e391a48b0724469dfd9f5e2def
MD5 92283403f937eddaceb966dcb6cd5e56
BLAKE2b-256 2554ffa70ff00da5d66b3eee8a4cc68fa99b1affd2a26f3188f81a64c24d7fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e5422d6473caf8bf6ddf93b233f55e778cd637ca6b6ff66f316473e897b2107
MD5 df1584b36f9943babec753fd6a144426
BLAKE2b-256 a9fde3d48ef315e7f568f1d758525193cfe3c959f4b65b1f6fbf9774f8d77495

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ac7154cbcda8f045f7c91b1def25b5469dd0a30841782610fd399d2faafb6540
MD5 ff835cce7abdf98b214a75d75e83ccb8
BLAKE2b-256 869238f6a1b51fb3c17d62ea3c3d8fa6154cd2d6bccdd0cfd8336ad143ff7656

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: autozyme-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 289.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for autozyme-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ff5362b0f8f0a42cdc99e055bbd0e22e14a683d8aef6613aba96e02cd95244e1
MD5 c760da6077f587282bc3341c8f0fbe81
BLAKE2b-256 4e32d0080255ced65b568f518a6611469ceecb34ae123e21665f859f88853481

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0f6dea5c84f33c2c727d0aa7a698a55902c29c9e8425614a208465cf6b528bc
MD5 9ac1e49e8fd4d10d84ad4d2b83366fb1
BLAKE2b-256 b2c325a9e221f9d7e95050f538d12cbd51631cf95fc947cc878bca7d81086c54

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9df10ab3f61f4653ba8d1238af523b060102a585116c73bab73637bd6a228796
MD5 b7bfc9d764366d4bf39e51b161bd3389
BLAKE2b-256 e04108d6d499923aef886d508927bd793ba4695649e8db79a6460d6a2130b193

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bc39a4e93a9041c9740fe58f6c0af96c5046995bde3c1ef4b6e41119bbb1db0
MD5 b0cbd1a343fb4699ab9f7c178f640ac1
BLAKE2b-256 086f48f2aac0368bdb2668bf1f94fb7b94410a5a3dcb7e1ca759ee75e2354b36

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 876d3c98a108234a699b3c5a44e04888c7ddbb97a2522e0af7bfe6516ca0b00c
MD5 d868a14a9b93db45943b793cd2d931ef
BLAKE2b-256 74bf91b862de81d9e58b76cbc11d3358e8389edf9a5dfc57581c8303f84b7611

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e961f65b916ca0ceade0db4407867a5d87867c4e4f2992334aadb152897c1d4
MD5 dc8d88fdbe580be65ae1d22606d89d38
BLAKE2b-256 5feed5a4fec0daa755fea80d0d3196898094671780c0aef0c2d7802e49c31c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 86b5344bb887b3e6f05e177c7e0837901cfc49f5614e03b1bb7a1e728a523fd5
MD5 d3a626e1387923c2ff630cf51f8c009f
BLAKE2b-256 bf872aaaff62bdc56cb6d3f8ea134a625f712cb80a8b7242b998ac5e8cdcfae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: autozyme-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 289.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for autozyme-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b66bc1a41becf6c7c8aed662d1d4c33d77929efb5ad37bee8fb5ea92d8b9220
MD5 de52cf2f6a4936068dc5db381258666a
BLAKE2b-256 a3386053d0c18a7361fa4ac1f637bcec8cda83de2c1db399ca2bc900881cb420

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2641f9da01735a14e8a7a200e4dba4e7d0c3a506051689a28e0302331bd593e0
MD5 0ca8a22ebbcb98133f7bb00171a14885
BLAKE2b-256 14582980bb136a60bd83cddf26c33fc928ce484043b6175ae1055889ba8037b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65ff965ead7302f9516ae1aab4b5a918f4c39c2ba130fa0ab7ee93015eb5f6cd
MD5 23f6976d2252f59dbd51affb5cbc924a
BLAKE2b-256 9bff20ddba2959b135b70efd7bde56758571710fa194a66d6ae5d0b1ed006767

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0917441f0a5b7578009e347b8049eeeeb7cfb45945ee92c7a70af1d94da8f519
MD5 0f4e1ed120432fcdfd8ae8a0ab3c6453
BLAKE2b-256 24d59c31b527fec6be54c368d20c18d1163e57f78d87afc2fb0a40262cc79ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83ff6fba0c3475154b988a1778b7b0ca2b0a3625232196e7da0c21f31e440ae6
MD5 0765ea0eadcd08e8485edfbfe45f5b05
BLAKE2b-256 561d6bab8d2ba67b6607a7f44d21900a1dab5bdcc6c440f29f6e673d05a38a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f53609d0753890ef1aaff4449ce6c20669f12798de5f446d56ef7adc8d3e71f4
MD5 520c90eb75d754540a4f697318da9a2e
BLAKE2b-256 a722fedb2f4c9e68f8270a554ad5de2f207690688b18571ad0e4ee02ecbe9ff6

See more details on using hashes here.

File details

Details for the file autozyme-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5d5996259b874f565a66b9f0383fa862391c899abd8079f3a09db1a8a228dcb2
MD5 9d55eb92124db5cdf32015557d5d9d56
BLAKE2b-256 d59239bf2a264791168708fa09b67ee5c90ef7b957c0f09cac0c6ac130c0f552

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: autozyme-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 289.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for autozyme-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 89700ede31620d0cfc8c4816eac4f7d7c5dd1025ff5b0f4cbdfa3b78c7008c92
MD5 46e8affc0c6c5b5c20294bc4f41fcd0f
BLAKE2b-256 5fa46d870c3e284a2d272da386e67d6e8249bfcdd229a246e3c7882c00e36193

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3ef6cb2d1ae6c1d2065aecd56a3e4934daa4781f465d233ed25b999a213ea7e
MD5 125c918bf970995250546e6c55552142
BLAKE2b-256 883f658ec0296b03b2cbc28efa0968e6238ebd2037317f184152b59c3d89a51e

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60d917ed1b4c6a7cf3b5f49788bf3c777b0aee453118da8124ea8a31c680e396
MD5 848bc0e89183ce29d95298abb3dcf299
BLAKE2b-256 5966b9f9fd5cea630a9aee16f9a118687afdd2cfa17c4dcaa3a62756b8e76352

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a110a28f25c1c44681545521c8828a3f325d9833584d9bab9df4f7381ed7d4d
MD5 a951f7538beb7868cfda81e014e41f72
BLAKE2b-256 2554b92711e48671a7ba3916b3ed65ba33d4147b0ed4c0712c7a9c61e6969372

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8690618f454789c10d930208fe5f45a9fbd0222e84b9335e068459b7232e63d
MD5 2ec9a0b996c7bddc4d0687f87986c468
BLAKE2b-256 dc543ec007d60d2d8557a3ae157b9438a4eca51e9b1cf9ceb277bb0a41c551a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 729b6254964589126c70ec624a8aebc975675d8f3778a551074170b91a56c02b
MD5 446ebb445a5bbe633ea0171c4314ca13
BLAKE2b-256 40826f8009a4a4c8b608eb1da74e21bab6737745e7650b5fbd34c3de3be72054

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ccdfd1f5bb339e87fcda1eca4125166e09dffd4857e9ca3f0dae692572284cf
MD5 429a90e807a79748be0ca6a6ae4b5969
BLAKE2b-256 227b72ff6e2fc934f7f6bb3adf7c0f79fd3d602e0401a045dc62dceee74dc247

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: autozyme-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 289.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for autozyme-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 193ba4cb33aef99964afb477c954a358ad03a6a07afca8b92e58e2ab4d0333b7
MD5 0a9d0dd03193763c6eb1dbe449d60bbb
BLAKE2b-256 2b66c92b17b0b743981c50e3714aab687f9af1ae44f00584966904253d019284

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2c053f9be5229018274a1fefbc20055a748ad05d7c911a057b1e6722b17102e
MD5 01d13b2f7f3e6bba4de787c8f99f6ef3
BLAKE2b-256 74883e11cbf8a6707fb2691e7fc4f4db3a8de9222f496f5de263018270d87105

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7f3c18208e752232b67ebf392e60d5909e8fa9fb1ea455177aabd9d9c101816
MD5 3d644d2c98cedd97137429fa3fd35c75
BLAKE2b-256 39acdf2c775dc0485529d399f67d5703916a1796394ae6dc8ed7a78ef60aa5b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d02db39cfdb95d3296d4d7bd83ba8bafc1822fdb6a782a78422457a0488697d
MD5 f25ef83041ffb48b748e6c6d3e26cc04
BLAKE2b-256 51ab450c8fe34e7d823decbc3c80e8d890b463e4724db82cc5cf376826bba00a

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d570431e70143470f2d0b4cdb13f1b2bda6800bc3f98f2e7384bc2bbfdac686
MD5 e42cb771ca0eb89eb9aaa83054a68707
BLAKE2b-256 2539e610e9b2bdcb44c6e6066dcd16b5d84a76e7971fe485ec694902b67583ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ElliotXie/autozyme

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

File details

Details for the file autozyme-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cfec10fe982579f850c078724a3816033726564f861a34037e9a45fbc910cb6
MD5 cfec47ae01dcdcfc8effcacb7884f689
BLAKE2b-256 57001c1dbe18831ee5c96d4cdd2b4283c9d783e299efc5998da0f6c8d2d10a4d

See more details on using hashes here.

File details

Details for the file autozyme-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for autozyme-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d41ba21d27c565db7bdf03b71c4bd9a6d12cd1c2be667bf0608a4a3ca357badd
MD5 ad26fae49937ba2c4949726906d18e4c
BLAKE2b-256 a3c64883d184c5ef525fa5f52eddaed40ad7f9cb0e59fcc3e032789ec577c79b

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on ElliotXie/autozyme

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 Pingdom Monitoring Sentry Error logging StatusPage Status page