Skip to main content

ASE-fast — Atomic Simulation Environment with Rust acceleration

Project description

https://gitlab.com/ase/ase/-/raw/master/doc/static/ase256.png

https://badge.fury.io/py/ase-fast.svg https://github.com/VoicuTomut/ase-fast/actions/workflows/tests.yml/badge.svg

ASE-fast is a drop-in replacement for ASE with optional Rust-accelerated hot paths. No code changes required — install the Rust extensions and every compatible call is automatically routed to the fast path.

Measured speedups on Apple M-series (arm64, Python 3.13):

Operation

Speedup

Neighbor list (scalar cutoff)

13.6×

Neighbor list (per-atom radii)

12.2×

Neighbor list (dict cutoffs)

9.1×

VASP POSCAR write

6.3×

VASP POSCAR read

3.3×

Extended XYZ write (large atoms)

3.5×

Simple XYZ write

2.3×

Minkowski reduction

2.6×

ASE is a set of tools and Python modules for setting up, manipulating, running, visualizing and analyzing atomistic simulations.

Upstream webpage: https://ase-lib.org/

Requirements

Optional:

  • Flask (for ase.db web-interface)

  • spglib (for symmetry operations)

  • Rust toolchain (auto-compiled on install — see below)

Installation

From PyPI (recommended):

pip install ase-fast

The Rust extensions compile automatically during install. You need a Rust toolchain installed first (one-time, takes ~1 min):

  • Linux / macOS: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

  • Windows: download and run rustup-init.exe

If no Rust toolchain is found, pip install ase-fast falls back gracefully to pure-Python mode — identical behaviour to upstream ASE, no errors.

Development install from source:

git clone https://github.com/VoicuTomut/ase-fast.git
cd ase-fast
pip install -e .

To verify the Rust extensions are active after install:

python -c "
import ase.neighborlist as nl
import ase.io.extxyz as ex
import ase.geometry.minkowski_reduction as mk
import ase.io.vasp as vasp
print('NL Rust:      ', nl._HAVE_RUST_NEIGHBORLIST)
print('extxyz Rust:  ', ex._HAVE_RUST_EXTXYZ)
print('geometry Rust:', mk._HAVE_RUST_GEOM)
print('VASP IO Rust: ', vasp._HAVE_RUST_IO)
"

Running benchmarks:

python benchmarks/compare.py           # speed comparison table
python benchmarks/compare.py --reps 3  # faster run

Testing

Please run the tests:

$ ase test  # takes 1 min.

and send us the output if there are failing tests.

Contact

Feel free to create Merge Requests and Issues on our GitLab page: https://gitlab.com/ase/ase

For regular support, please use the mailing list or chat rather than GitLab.

Example

Geometry optimization of hydrogen molecule with NWChem:

>>> from ase import Atoms
>>> from ase.optimize import BFGS
>>> from ase.calculators.nwchem import NWChem
>>> from ase.io import write
>>> h2 = Atoms('H2',
               positions=[[0, 0, 0],
                          [0, 0, 0.7]])
>>> h2.calc = NWChem(xc='PBE')
>>> opt = BFGS(h2, trajectory='h2.traj')
>>> opt.run(fmax=0.02)
BFGS:   0  19:10:49    -31.435229     2.2691
BFGS:   1  19:10:50    -31.490773     0.3740
BFGS:   2  19:10:50    -31.492791     0.0630
BFGS:   3  19:10:51    -31.492848     0.0023
>>> write('H2.xyz', h2)
>>> h2.get_potential_energy()  # ASE's units are eV and Ang
-31.492847800329216

This example requires NWChem to be installed.

$ ase gui h2.traj

Contributors

  • Original ASE team (DTU Physics and many others) — see upstream AUTHORS file

  • Andrei Voicu Tomut — Rust acceleration layer (ase-fast), type hints, error messages, LLM builder

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

ase_fast-3.29.10.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

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

ase_fast-3.29.10-cp313-cp313-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.13Windows x86-64

ase_fast-3.29.10-cp313-cp313-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ase_fast-3.29.10-cp313-cp313-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ase_fast-3.29.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ase_fast-3.29.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ase_fast-3.29.10-cp313-cp313-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ase_fast-3.29.10-cp312-cp312-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.12Windows x86-64

ase_fast-3.29.10-cp312-cp312-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ase_fast-3.29.10-cp312-cp312-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ase_fast-3.29.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ase_fast-3.29.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ase_fast-3.29.10-cp312-cp312-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ase_fast-3.29.10-cp311-cp311-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.11Windows x86-64

ase_fast-3.29.10-cp311-cp311-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ase_fast-3.29.10-cp311-cp311-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ase_fast-3.29.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ase_fast-3.29.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ase_fast-3.29.10-cp311-cp311-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ase_fast-3.29.10-cp310-cp310-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10Windows x86-64

ase_fast-3.29.10-cp310-cp310-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ase_fast-3.29.10-cp310-cp310-musllinux_1_2_aarch64.whl (4.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ase_fast-3.29.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ase_fast-3.29.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ase_fast-3.29.10-cp310-cp310-macosx_11_0_arm64.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file ase_fast-3.29.10.tar.gz.

File metadata

  • Download URL: ase_fast-3.29.10.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ase_fast-3.29.10.tar.gz
Algorithm Hash digest
SHA256 3cbf949911471826b8a0c1899d12ef2afd102c33b80ae854d6bf04de129e21e4
MD5 c62049d71ae162f1bdb6cb8294baf772
BLAKE2b-256 c6c328ff88e60e5b73c0fdfd9998239c7fbce4f07ed71841072c34abbcbb235f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10.tar.gz:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ase_fast-3.29.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ase_fast-3.29.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 532981d6c9d5d34c32392c68173ba430a5cf09d1cda15e8826643fcdf8457de0
MD5 1df3306bdb7563319a326fb10ae6305f
BLAKE2b-256 966b16d627f4bc52392533838f6c3bb6a578b56ed9f48bc544f5d21f1f490b4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01a5fdcf0c312fee4cc6c0ce81d3db68b06633273c1c12cf24fcd729df84b1e6
MD5 603c384bad24487bcefcb1d86ef4097a
BLAKE2b-256 f6155aa256c9a0c88151e2c95e3385783f7fffcb0a191c7e7034db2d12d02270

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97dfca292642d28c6077e631e3f7f8e2efcce2428714b39cf87f00387855e30d
MD5 14280442cf3673772eda6c8c180e340d
BLAKE2b-256 5c1e01e7a72b837666b702a44064a167706789ff60c27532d40be7e2d0506b44

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdba87ccb74a163e719786585e81bd22fd1981d2c798f9e92a65fbc4212469b2
MD5 81bfd7619c24b9566fad0b7a8beb4116
BLAKE2b-256 7245110b1b74df2245e293b8d6b9db09d69cda5bbe0c50e0094b4302fb843e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e9456101af713de5235f71bd35cb319206496c0309a0a2bb048e67413f18465
MD5 b845de336824351a4296a891ddbbae7f
BLAKE2b-256 0dfe8c98016e908b1f708ef87046c49b01faa7a9e9f9d25d4ca3720715a79881

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52e2268bf776b5e8bb6f070894b6cd7e08503776490648922cf6ac48d0f56084
MD5 00fa8d505b74012dd290f71a8ec10bc2
BLAKE2b-256 f0cbcef6f79c84d613d9855a69adf2410b578d4a7591e04a60561fd3814542a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ase_fast-3.29.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ase_fast-3.29.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12307241afd9000e93e201c32c492fb6766e49499ef89181147ffed69e3423ce
MD5 4f7d76c6132037558e786cd36c4c98d3
BLAKE2b-256 aa3c7e9f3be43509be6021c527bab91c2b5f32c5815ee91208cec6de768aea1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c569bd40742f66c2583c6694a62acd612ed46654e93bcacab209afe8a6c7da3a
MD5 62cf5a064fb3e9165192dd5600209c59
BLAKE2b-256 613f498216ad7bd4e267bef473dbdfbc373a3fc46aae93e8b6d84cf143fc580d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 764340c94f5d231f5275ba0e69e39889db1f8676c7c0c9ef6e6ce4b35d834bba
MD5 583a5a769b3ca873b819b47912111e95
BLAKE2b-256 f4daafef83484db1141d0332d0898e1ff612566ecdc251e8195ea09633fe6673

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61a940dd0026f49f8306d327d42b891feb05a01db657d1c0d647cbd789d12cb4
MD5 17f7a4390b03c2c5c8ea7f6dbad0f0a0
BLAKE2b-256 f41263f42b46ffc07140233cfd78ee3ab9bee4233396a1c50431a0ee15200218

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71e67fcc2bdd2bf3deb2eda409bc6d0753933bfd86a3503546a660d01766f2dc
MD5 da15c81aa7086bd6ba16ca9473c6644e
BLAKE2b-256 0696433d84ea104854a62d43bbe4b084c002abdfdadb4cbe373f8200eeb13cdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51f900e107652198e02800321e490c88a27c18539dbbee012c777ed2b026c93c
MD5 f5cc0585afa32966c7d26ec6421bb3b7
BLAKE2b-256 6edd48725ee287d65eaf7590b4b43020967a8fc6e02b9ac47616f3a1c4dcea96

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ase_fast-3.29.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ase_fast-3.29.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ad56b6d871baaa73bd6e73e873842042d84851bf002d050e4b094df90b131cc
MD5 68bc6b6018d8b9d365e4049960a006de
BLAKE2b-256 1b76cafd53db573fce1f2f5fe75b0044d53db26d93d154684e10e0dd2fc140b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03baf318f2b32cd6ba97da164453d5f866a6ce85f88827c599c136c595dcb73c
MD5 70909b9bfdce6208647fc637cc241e75
BLAKE2b-256 6de45f2eb7082b4ff2b02439cb5988ba9b8965435c7ea392c87f99298d218cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a07cfc15b992e782740d3aa87671e70c2eca802641a9b34c5905843c11b1e97
MD5 3afcdee7fb9753edd3ad5c7de5c8a4d6
BLAKE2b-256 8ac5e4903f092a0834eaae6a3457f4d060c5e96265c327ef88f207cd5029bcf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5c53caeaddd60c0053846f54fda5f3b9ec05171661a6f8eabe7556e5abf3111
MD5 5292db20d0140f3cfe50317f09b40c7d
BLAKE2b-256 75c7e2e7314e5163432f5e2e7a9c204bdd160de5918547dfa65729a59a2b4cbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c041f3114d4d0079576eca42afb45ede8969377108c5d4134af4785384ee755a
MD5 455e22ed0861ddde648ebd728fa7ca70
BLAKE2b-256 98d0a28fc5dd50f5d2684650b9480d3cc2e80b52be31030c733d3592b744d562

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f697f0f9d6afa02670b55ad2487f8f90b06a7df94aacac5b91f81ae86d51769a
MD5 2e53ce1b9db7611a749806b2b0cc4664
BLAKE2b-256 d50d876de55cb4ff04bb851e87b9e3e109a4717cc6e5484a44b03e03aa082475

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ase_fast-3.29.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ase_fast-3.29.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62ba86766f3c85605b02e55b154d4a1f2633d8a52daa928f68e8a2b550f3dbcb
MD5 d4ce3feced1b569742bc69f99b391efd
BLAKE2b-256 7d6320c2d98fa4cde765e546a2a020825924211385e1f7e2be7e788eda84a100

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a298d125df3aa1658b747b014ee6391dfe6eec804823195c80b06a66913e37f
MD5 5d4a94655800fbcfcd0ecca97191e22d
BLAKE2b-256 a8f587fb1da4f224790ad3ba12bb2fc7440285410c6d0ae4b5b97f068b00855e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98016ed2322e10b88eee9f75c5a3b74e114e2d46ae06259f41b8a03826f7b378
MD5 2e1dfe28d8cab4aff356779f51c05a94
BLAKE2b-256 3a7f4f789ec2968b56fc24a8ab0035f410194f2a1071987640a8b7a80f7dfed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34390c78fb0ca435d12f9478fd94960563b3df36b305350aaf80687b1dbfdbd2
MD5 8612ebbe7695931e89ec1fa6c8eb97e4
BLAKE2b-256 6841598fb03a36822f0f6dbb43d7d892bc3e3c6fd077452ace989268b687bccf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e2705bfb6495308b0641330b9acdbcafe93455edcbd77bd037d8be82afb573c
MD5 2d28c0b774c5638dfc67599a54aeed50
BLAKE2b-256 fc9d2f75a30c7732afec683ba56ffa848797162228d90d17132a2459bda09540

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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

File details

Details for the file ase_fast-3.29.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ase_fast-3.29.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5baf46a2bc7b77b29ac13716b30846de38371a7ffcccbf664c8044d350686bfe
MD5 725279b9746b4da0bfb0bc3211250c99
BLAKE2b-256 1ce7281c3a62e6f599422c73b2f58576992234ce0f35170cc7a3212cf18c4d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for ase_fast-3.29.10-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on VoicuTomut/ase-fast

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