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.1.tar.gz (262.0 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.1-cp314-cp314-win_amd64.whl (289.8 kB view details)

Uploaded CPython 3.14Windows x86-64

autozyme-0.3.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (338.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

autozyme-0.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (342.3 kB view details)

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

autozyme-0.3.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

autozyme-0.3.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (338.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

autozyme-0.3.1-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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (344.2 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

autozyme-0.3.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (338.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

autozyme-0.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (342.1 kB view details)

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

autozyme-0.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (344.2 kB view details)

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

autozyme-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

autozyme-0.3.1-cp311-cp311-win_amd64.whl (289.5 kB view details)

Uploaded CPython 3.11Windows x86-64

autozyme-0.3.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (339.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

autozyme-0.3.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

autozyme-0.3.1-cp310-cp310-win_amd64.whl (289.5 kB view details)

Uploaded CPython 3.10Windows x86-64

autozyme-0.3.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (338.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

autozyme-0.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (341.8 kB view details)

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

autozyme-0.3.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (290.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

autozyme-0.3.1-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.1.tar.gz.

File metadata

  • Download URL: autozyme-0.3.1.tar.gz
  • Upload date:
  • Size: 262.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for autozyme-0.3.1.tar.gz
Algorithm Hash digest
SHA256 f8b8eff891c3b2453ba2469bd4f9af53abd0edca8f98aec0dae34243e85370ad
MD5 36e10f571c129d2e9ff34031971b43f8
BLAKE2b-256 4255cccecd7e3f9562b98121d816ff58b10cd93e048fc4876d7208f4d99e5a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.1.tar.gz:

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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: autozyme-0.3.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1b8379fee31db19432ac0d3e45c674368f55a8737bff69d21805f2785f6b008e
MD5 9b9bfa120d52a4a6d886bc84f8c7f858
BLAKE2b-256 201219b5d6f3dd4d072e5e467d3dfab928f8f1ec139f632db767efc5dfc4c57a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcbe3f7838e1b6346df58ae8762ced0b5500f8b34942754e68a142bea481db7b
MD5 5089ca8b12a49b9e2df7e52ba714c5a7
BLAKE2b-256 16f7f651965fbac25c5a75e48a43fda566e18d43c82a083df67cb3e535a8765d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2511113a2a20d5d9b850ca17b584bdadb1c3ef8df4a3abb5bca0562f6ef4a50c
MD5 2d8ab0e3f89ab07c4d72918e68f681e5
BLAKE2b-256 44b0310289ba2989e53e385f8ec82ff22de0ff9840411ffe419350ebf88557a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35114807ce7ea957eef3d1df22088524d4e0ced61048602cf75bf12b7bcd46e2
MD5 6880673d35b5f0c3c90ced79f52994d3
BLAKE2b-256 1d49ec93bcd3cfb7b5967f5642a6d9bf35814674308b43041c69c99dd4697796

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1eabd34b7185ea548dc4a8dd03b71cd4ab3c275fe53e944d8a404fabca1b282e
MD5 38b4a9f804d30a6a856ff86a031e73c0
BLAKE2b-256 6c7961465863eb2139d00d07da50c88ca9bb88ea0ab9928923ac0c724231c951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da08a47d2272a6ee0354934c3137c1203eb88882c3ca6acefdbf4dbdc65a0f34
MD5 dd1998b0498b271d47df186020e32453
BLAKE2b-256 22afd47d8992f0b960f6a82dfa72efcab8d83181251e087a2b5b150f2017ca45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 009a946846b1580ba02b002c90d87ecfe5093f68ce7a9e5d047a39fd6d8781af
MD5 fa97ecfc2f31dd23f91c159e056960f1
BLAKE2b-256 f6f2b13d53690c67605e7033fcf6f8c6bec01cf4b82352fe2bead22203d2954c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: autozyme-0.3.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4b7bf0253e384079f6161300fea9a9e8f72405c58b56ab728b0b4febba7ae676
MD5 4e5e886d5658d6c9b32af69dbcb4c613
BLAKE2b-256 fe3eaa2a607cf9d647ca15d99516d1d5c7fb0b7bc73f826f68bde36ae9bf2cb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7477075608a2dc57f6cae10a6871e788e46aa9ad5bfa6113c2382f396b03df1
MD5 bf07bdffd2475cdede8f3f11aa277d13
BLAKE2b-256 15b8e70fb3aea08d51be26ba0e0bd4d49074053624ed82146c004acdc19abcd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63ace9193eb7815564e85fe9bdaec85515b8290c351b53eec035dcb0de4fcaaa
MD5 83f0f5e8382d8ca8cfc972638f915691
BLAKE2b-256 878662c90e1388d39ed3c518aa4cfd5ecdad7d65f054e7e8746d1c5273e868aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 919d2454a5177ed72d1f4f5371f50ae379c8d78c546f01a5e60cee86536e4e67
MD5 7012b5145315ed69e8f5cfc00cc224d2
BLAKE2b-256 022acf84a8999e77fc0985c7fa6e83bf831b4ba57975abc8c653c10999e21cd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77a472e7dcedadf98a29163b957ec43f9df5a65bd9a8bdd1472a060f51051fef
MD5 09f9ad99ae8de31260c8d1417d351534
BLAKE2b-256 f8d56789929dcaef5b46117649b70e3d748d5fc9c9a629db8bc2e50848c4b777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d574dc1e5758ae15bc45aa3448e13a845a97a9da37dbd7b91d48ae1bc70be7e
MD5 e2645e9dd469841241ca00eb7fc457b3
BLAKE2b-256 c5eaf095a6667cc045c0fdc174dc625579c88c74c62717c902feafbea269baf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 157ec6ea8db34034653367abf53826c408c0d14e175c0fe873f3b2db867e8835
MD5 a8c7c789bb2614ed45a74d00db578986
BLAKE2b-256 84e34da60249a21a0662ebff65b0f9913b850e83d59e92caa226f36e32529040

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: autozyme-0.3.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed75ba1eb14b181c35e574594624c31f522b52ca77e0b8b89d7e24abde537307
MD5 bff3ae3f8d9be51dfaf64db5be0a0c25
BLAKE2b-256 3506bfed714a5c147403d69456e9c9a007e8b4df32df98b099ec5586585bfe70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9826dec6449fd2831659e0a185349a83b825b80d52dc8752c0b29314a362a263
MD5 a3080af57b7adbe672773405f6943fb9
BLAKE2b-256 4a48cfd99d3e1cc83fbe3001bffe3f1d45324a94a470599f67a0da1b273e35ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f65f29c18916ab4eb38428b5d6159a8d4d9cb5120fb7a6f9a222447448bb6fec
MD5 900e3144e7e8e16081d83e108357f7f5
BLAKE2b-256 927cca03eea2104a8c4f7c8f209b31636aa17e95a92aabc1afc82f940d164697

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1669947e81a9b24a260fa9efeba0425c5aefb97b449ed3149c62406dc80e2f6
MD5 a981244d14d7c6b8f4ab31891fdec185
BLAKE2b-256 12d0bbf91766e2a389df4a5aa45429f97ffc85e421e546239862ffce2c5d44dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41514b202ddef10511099e6bd575c723cfa3f681721671d83071f6bbb51906f2
MD5 ad30985927326cbcca6234bfa6ea2504
BLAKE2b-256 f94f5dabc4b7934e5954d916a6dca53c98f33aaefae9c4d2de4e6f8109937fcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fec101e2441adcc6304c9d83375562c3e4915e1a8042ed783484a855064c354a
MD5 fa9ea819a33f373b4258cf2df6a2674c
BLAKE2b-256 623e60e207f4c93f612cf568b06555db5d9b59f76247cd649d7a5d95502288e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b3665d0d6c88b6e2b9a0c286f47f15feb1c1388440c4a45c79fcba3f06ff1f7b
MD5 702fedad317103dd45e1db45967e5059
BLAKE2b-256 08f831a7908a224ecc9ee8b4d0245985af868c5c6e811fa7f95aea0bd05beb48

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: autozyme-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 289.5 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3bc4cce83384732efe435b65462d99af94862860af9045ab051c8b12c98f8e22
MD5 4e5d4d3658f020119ff716fae3cd22d8
BLAKE2b-256 7446a512ec0c34a79c9cd6f5a22b87ee8ec0674ffa8e53c24b8846079105e91e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4374c7ba1f70d295128e29b64a2ef2990fec492ef33256fd9dd53cb0e2fc7c62
MD5 429129b60aa30e0f627bf0171b208467
BLAKE2b-256 f11018520a5c263659058ea9d4f2220fb952d9f177d74ac92e5ad55bbd76fcba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f02b00aae2e05f9cdfda8aa5ab1dd8fb1c9bd755452eb4350eb807e32e7471d2
MD5 933767118d2712ea869e025435ac34e0
BLAKE2b-256 2f8871c3343d3b635c5dc3eefef01a8fe625dcb25a243e089fb0e53b2ad73be7

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e34897f95c69a1f06714214de80cb7b81d77f95d51623fcc5459977ea5518a0
MD5 127d4508cec6c963d9fd7b59cc559e0a
BLAKE2b-256 5492feb40bfa611e123f6295faf806a40abaad748ce8f0b0b5b3999e0288f4ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e035018cf65e283abee7f80b0905c473830a9aebfc9d17d3117ce662b0296cb2
MD5 d297edccadc3df0c5a484867888ea57d
BLAKE2b-256 fb5a50066814dcb1e2f3e1b02f0b7b7603fec43daa92e23b0f0f3786d4fdd5d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b82946e1109aacc3d532bc00d56ba77c5a8592a590eadd6cea037988afc2033
MD5 e46e9f8ad4c27c4da13f2e7f1683245d
BLAKE2b-256 1f89a52f1c652853d034eabd1bb2b78db8c712309b7c00c5d8b77c790acf99e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39a20f502f661994b287daf6e21144ba7de30c945841c1a6300225fe3a5325a0
MD5 bfd2d756b78d61669aa07c4e58e32eca
BLAKE2b-256 df79654b56a003fc0cd53f6b5ca4b23df31e2cbbe9feb48b2573f91669c29912

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: autozyme-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 289.5 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1f1090b006454e976847093e49a91c304976b1dd88f164d3df9ad1cc6c800d9
MD5 3468429465dc711d7474671757179e8b
BLAKE2b-256 ba9e26102076b743eba8b78fa31ec1b072c5455ed7c841d70c95b15bb2d47332

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98439c895bb99306ca4b95a78783e27c24407f394580f9f54063a10b1e8923cb
MD5 3db8fc6c3c9dee5a21ad5c3facf376c3
BLAKE2b-256 45df159de2c735422497fa2742afe61c6bc342457b3ad9f7b6351dbc97fa7727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecd02405831fbd3646e5be21fc91970b8d585b06a0b08e241f29bef34d2958fb
MD5 ff1cb799253b16c61272737083fde8fb
BLAKE2b-256 68397a7d3955e9312e35601a9564147f5a63fb83c0106469cdad35388d87b8fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0ae547c11f1437723c91f36d372cd821049846b061745c88f7f9340d32cb5dc
MD5 aac09b8415cdcb6b27f7fa1d5e63a237
BLAKE2b-256 5a49467c02e23d6d5e52269ea17c59b6241b35bb9d39e351f04d6951e1e9b849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e46795b72a37c8f8aed845ef86b0656c82d51349f76695a92a1428feb2e11185
MD5 04214cb6c75e1449e6075db0c7723dc2
BLAKE2b-256 4ba9ed46b3fae97b05d2675d76a7b8fd77f81b438fc84431e93e9fe9246652b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11e0bb2e5420e41784e7a4cbdc12a8636128b9ede0d30d6a2c3186c2fba8425f
MD5 f460c1cceb85836aed5a2cdc8fc18244
BLAKE2b-256 0c3773165d7cadf83c156f61f78ecf2f162fa66a53acb163ac68c6baf4bc9dce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for autozyme-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc62c40386bda22f2bbf0f2ced0ad9db16802a54dbef6727869549d83f6532d7
MD5 9f5074f28e27bbc5c320d57fce769434
BLAKE2b-256 d7d259e0b20b6ef579bf33f4cf4733fc564cc1aa04fcf0ff3be0151d268d3ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for autozyme-0.3.1-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