Skip to main content

No project description provided

Project description

Fast calculation of structural and dynamical parameters

fastatomstruct is a Python package (mostly written in Rust) that includes functions to calculate atomic structural quantities. If possible, thread-based parallelization (using rayon) is employed to speed up calculations and take advantage of multicore processors.

Citation

If you use fastatomstruct in your research, please cite the following paper:

DOI

Documentation

The documentation can be found here.

What can this package do?

The package can currently calculate the following quantities:

  • Structural
    • Atomic distances
    • Coordination numbers
    • Finding bonds
    • Nearest neighbours
    • Radial distribution function
    • Static structure factor
    • Bond orientational parameter (Steinhardt et al.) and Bond Order Correlation parameter
    • Tetrahedral and octahedral order parameters
    • Three-body correlation (TBC) - simple, angular-limited, and angular-resolved
    • Bond length ratio (BLR)
    • Bond angle distribution
    • Angular-resolved RDF with local coordinate systems
    • Local environment characterization (Cartesian and cylindrical coordinates)
    • Peierls distortion analysis
  • Dynamical
    • Mean squared displacement
    • Non-gaussian parameter
    • Overlap q
    • Four-point correlation functions
    • Current correlation functions
    • Velocity autocorrelation
    • Vibrational density of states
    • Viscosity
    • Intermediate scattering functions
    • Participation ratio from dynamical matrices
    • Phase quotient analysis
    • Mode-weighted quantities

Example usage

This example uses the Atomic Simulation Environment, which can also be installed using pip (pip install ase) and is a dependency of fastatomstruct.

from ase.build import bulk
from fastatomstruct import all_distances, coordination_numbers

# Lithium in the BCC phase with the unit cell repeated
# 10x10x10 times
atoms = bulk("Li", "bcc", 3.45).repeat((10, 10, 10))

# Atomic distances
dists = all_distances(atoms)

# Coordination numbers with a cutoff of 3 A
coordination = coordination_numbers(atoms, 3)

More examples can be found in the documentation.

Example usage in Rust

fastatomstruct can also be used in Rust projects. You can find the documentation for the Rust API here. Examples can be found here.

Installation

From PyPI

fastatomstruct can be installed from the Python Package Index. Currently, Windows (x86_64), Linux (x86_64, aarch64), and Mac OS X (x86_64, aarch64) with a Python version >= 3.8 are supported. In addition, your x86_64 processor has to support AVX2 instructions. Most processors since 2015 should meet those criteria. If your system doesn't, you can still install fastatomstruct from source (see next subsection).

To run the installation, use

pip install fastatomstruct

Image parallelization

If you want to use image parallelization with fastatomstruct.ipar (see documentation), you should also install mpi4py. Please consult the corresponding documentation for installation instructions and prerequisites.

From source

Installing fastatomstruct from source requires

  • Python >= 3.8
  • pip
  • a working Rust installation (1.87 and newer), including cargo (installation instructions can be found here)
  • maturin, a Python package that can e.g. be installed using pip3 install --upgrade maturin

To build the Python wheel, run

maturin build --release

The resulting wheel will be located in target/wheels/. You can install it using

python3 -m pip install target/wheels/fastatomstruct-version.whl

Replace "version" with your actual Python version. The package can then be used in Python using e.g. from fastatomstruct import coordination_numbers.

Running tests

You can run the tests using

cargo test

Additional regression tests are implemented using the pytest framework. To run them, you need to install pytest (e.g. using pip install pytest) and then run

pytest

Contributing

We welcome contributions to fastatomstruct. To contribute, please follow these steps:

  1. Fork the repository on GitLab.
  2. Create a new branch with a descriptive name for your feature or bugfix.
  3. Make your changes and commit them with clear and concise commit messages.
  4. Push your changes to your forked repository.
  5. Open a merge request on the original repository and provide a detailed description of your changes.

Reporting Issues

If you encounter any issues or bugs while using fastatomstruct, please report them on our GitLab issues page. Provide as much detail as possible, including steps to reproduce the issue and any relevant error messages.

Seeking Support

For support and questions, you can also use the GitLab issues page. We will do our best to assist you in a timely manner.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

fastatomstruct-1.5.1-cp314-cp314-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.14Windows x86-64

fastatomstruct-1.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fastatomstruct-1.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fastatomstruct-1.5.1-cp314-cp314-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastatomstruct-1.5.1-cp314-cp314-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fastatomstruct-1.5.1-cp313-cp313-win_amd64.whl (9.9 MB view details)

Uploaded CPython 3.13Windows x86-64

fastatomstruct-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastatomstruct-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fastatomstruct-1.5.1-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastatomstruct-1.5.1-cp313-cp313-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fastatomstruct-1.5.1-cp312-cp312-win_amd64.whl (9.9 MB view details)

Uploaded CPython 3.12Windows x86-64

fastatomstruct-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastatomstruct-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fastatomstruct-1.5.1-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastatomstruct-1.5.1-cp312-cp312-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fastatomstruct-1.5.1-cp311-cp311-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.11Windows x86-64

fastatomstruct-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastatomstruct-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fastatomstruct-1.5.1-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastatomstruct-1.5.1-cp311-cp311-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fastatomstruct-1.5.1-cp310-cp310-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.10Windows x86-64

fastatomstruct-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastatomstruct-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

fastatomstruct-1.5.1-cp310-cp310-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastatomstruct-1.5.1-cp310-cp310-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

fastatomstruct-1.5.1-cp39-cp39-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.9Windows x86-64

fastatomstruct-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fastatomstruct-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

fastatomstruct-1.5.1-cp39-cp39-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastatomstruct-1.5.1-cp39-cp39-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

fastatomstruct-1.5.1-cp38-cp38-win_amd64.whl (9.8 MB view details)

Uploaded CPython 3.8Windows x86-64

fastatomstruct-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fastatomstruct-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

fastatomstruct-1.5.1-cp38-cp38-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fastatomstruct-1.5.1-cp38-cp38-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file fastatomstruct-1.5.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b1dcea2b3df960a3f36307562b79f6f149203a214104c551e60ef42a57f48c67
MD5 da970236a4ad4e640b7864b2202e8dae
BLAKE2b-256 f527f135d5c0a16475f3dae512cd0a0c31b02e3b4d7510c8b8c2ac9aabdef8af

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f9685d9544e5b1a0c29aba53af03b22dc6346fa74b675cc2bf7e9629f0ae83f
MD5 31ebe8129529c964bf3b3fdfd09167d4
BLAKE2b-256 a868fd1e5b32e36ef50a88b4f557c23766c60f5b774776e230e15a6e4f035222

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71d28590d63ab45319addf5fc7772b555cc1b292b0263aebc38455a0f95fbc72
MD5 ed199a41d4a9f4331531a83c7808f03c
BLAKE2b-256 1e0308acda185192b84983d6fd9c4070ec01a87ad50fc824ddd6a9514b529e01

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26960612d31dc2b94de136d3581edeb3d96c2613e60f0d02f6edb56413996334
MD5 5b1ec10df88dde0d5a165cdd5227d609
BLAKE2b-256 a7728f6c05840bf270fe50d8eae55588d394a22f8936d1e9a1313a466d7cc87b

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee2c4784d9cba20ebdba584b6f17971b19d4061771157e93ee7031379dc18664
MD5 c60929d2b70f225920a9a91b4bc08a8b
BLAKE2b-256 8dc974d24879623d8ae9ba4fb5327cd88378c03a4f619b451fa4d53aedf4b4b3

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc2f0fb17cf184c93ba202c3a32e6a2cbfca5b65e6516c60e263c727176ded8c
MD5 d0eb08e7b7c9b568ffec96507817f86b
BLAKE2b-256 081708c5f8a806369ee59e6405109dfe4aa437a9c28e0f4be94ba408e10bb575

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a16a87f247e732069520053199c4e4fa257a9122c5d1effaf231d000fae1977
MD5 d3b1a62e5862a8937e1fff0bcc39c164
BLAKE2b-256 5dffaf08516afdf09c7f5ccafb80f1c3c357743a31f5be38515d37ba17c81f2d

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7557a3692a68cc6fdf4637356ff4abece987be9159e953aac84ccfef5c17ddff
MD5 3b95e152d3ce014878a02178b87aa158
BLAKE2b-256 938677d2533cb00e74fb13d6b019beff8a7e43ee4998b7a991c9c1aa680513ff

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddd8579592cf35974844c5e5889f468db4821568386e37b05362f28635e6df23
MD5 32bf9f98b1a5338d2fdb139756ff7eb1
BLAKE2b-256 857c3cca516ddc9e02f70d3f380cdd5172a7dca5d8c74234b7d91f17e35a7b5b

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b42205fb01e97b0d0d3cd23673cef35e7f5a52078ac8de651905d62197cee85
MD5 b7d1a677d06aa7dbf3f01ab04572fe87
BLAKE2b-256 d0a456b533d3a3dbf4f8400c7572e68d69ed0df0a4b66acef253d7c2360b7aca

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6bc3f950115143e4f0b64a4b999a9ab175a4617ecd88bba74a94afa7953aa8c4
MD5 7158f66cb5273707ffb55c3cea8ec5aa
BLAKE2b-256 06c7720988fe99a10a7900f553aafcf55f98d312a05fc4e0878d5518df590502

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c024bee227c65282e4d4a379a5e10b1ba757a75b354afa510bb579b642801e53
MD5 52cc46e8bfbc79a646770c84054cc39f
BLAKE2b-256 fc8d4abfad07862948c9aa649efdca2957c966edb4da387f96a2440ae5e96da1

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3cb0ee040c61c45c5aedcef5989fa5d2ced9ec26c1394e0f53f6ba92e149ff5
MD5 497b6a67255bc9cf67ee5cf77d9c417b
BLAKE2b-256 4800e1bcfeb9dfbce6f4a979744fbe9037608b7423f14b5c8471ee1b0ed80998

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 232fdb5c3f5e514c3410b42e7ea9a0b8eaf4677c10814346670d524cf97cd309
MD5 753474fc04ee37340dd5edcec43f350c
BLAKE2b-256 9d949637f7aba2894cf57011cc3d0a7459f5eeb33effd98572306747f76d40e0

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49e8e179f2f81711c887d37c08b3b626827a6f4cf2d35175d25cc0127488de80
MD5 d0d37576b0849ffb3bcd1095e9a58c0f
BLAKE2b-256 3cb15c53c508c01cb1809985f0021b73666c66b62d4e7060ad930630c8507253

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2a8f8576016c1341983112f4dfa91279c451571d42b9d67456571f0d866d6fc5
MD5 2d64a9f6b9994b26220153e19786ad9e
BLAKE2b-256 57f235e79c60396d7b8f404814deabb5b4114ce22bc4e1254c7f503e42602223

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f760b40c50ca1604e13b63177e07c9861e19ae851a7c565d1226d50947495ece
MD5 ea16d9cee2335f44029405c2ae0090d7
BLAKE2b-256 ff143caccd35f33fdbb622d545837e6da77c1ed00f15ebcb8d208745f19c0f9e

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03d17eba657e20a007d75a2e0706b2e843128b7870aa7d03545e99a380bf27f9
MD5 9f22ca302b6cd0a924433706ec428875
BLAKE2b-256 85645e3a51cc3a308a6d3df9ad6d4f2a3c160ad3fe2be82bc0974844b088e7c3

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00ae0b1965c3b5542726d1cb86f88dc7558abb59483d6eb4ab6c9330656c0e00
MD5 5d7414c7a626711d49e7c324a28d8de2
BLAKE2b-256 dc4b5a04481235b3ee4bf8a49714ff9c894df775ab93510d03e3467edd76a47d

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 924bdb6c21479d45bf84d22a341d10eeafbafd6639813cc8f679436a8cfb1762
MD5 a1774bd553414fc271df22919db3c2ec
BLAKE2b-256 9a2f339e80711cf2d7ffa5452b135e51f5f7b808b28357b0d0f7b6f4a71d7fa3

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 33f8311512ef01e38c82858b6eb740393de6b0c3ff2c9a6980476e89080aa354
MD5 83b215cd90df3e903a680a3ee4ebe51e
BLAKE2b-256 e9277faa9ae13785e0bdcf92a60069b86065d88c317693494b5b81cdddcc101e

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e38250d83fb4543f2a0abe82f591ecc2c48865548c7159b700fdc8460699a53c
MD5 9f204e3b92c2bdd718abb8369dbaaee0
BLAKE2b-256 fd532101431c213d70d0c79704e74db7298d2ac3a4cf76bdeff29b9c64a6853e

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6a91a7be402140edca7ceacecfaef853fdb475663eee0b302a630a3fdb1c8cc
MD5 a98f6c2168583971d8dfc21ca20bc5e6
BLAKE2b-256 909e688c85dcdeeed1ab18e587bff3768a0881bfb63ace08cc9476a44f9b470b

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4cdbb3ea7a775ae7408e9fafb40f950de9c9ee79ebdf5cdbaa19cafbc8618cb
MD5 646ec5d193eed41ade68f88571ba6fc0
BLAKE2b-256 ff2af054a71340d44ec5a4f1176fbbc4e82f86d0be5d3ec829b6e2cd0dc9f220

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ccc2b7c60507596f8b2d64d82a48e12b8dea8527b06bb1f33f76dfea7469aef
MD5 2be26c2ac30449ac8d9708921ad8e760
BLAKE2b-256 28efb0a4ba5e4d1b341c1b86501a82a7ccfe8e7f12fcbd0afea8e1ba0728451e

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7c2a684237995cca696c847afb1625f6589765f5a5841701d5abea5b6ddad33f
MD5 7d29cf0cc92381b8c479b6c1b94bbe11
BLAKE2b-256 5a68200a305c3781f2e1eb18091a378a53872f9dda53482e7424c6d8dfdcc7a2

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99e903b6e572f104f59384d1f6e86b213fac8d7a12e7e80d34b4527cedcaa934
MD5 e91d9f7bc78d9f446e86802130cff973
BLAKE2b-256 6c200803fefc77aa3cb756c8a1194db3d360aa7904f347a12d639992d8cca140

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 954e8520782be49bc19ade7486a4adfc0480dc0ef30eff8f8649a54acfbda0e2
MD5 72d4b8f53755af0072e85e285c95a710
BLAKE2b-256 c22ba868575763db81cc4df8a6e3ba95e902f379915f09064cb8c5204fe3bb11

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7483fbf1872f3cb3a6e4319740434946fe6248958edcccf705850da8125960e9
MD5 6320152228e65403238370ae21237266
BLAKE2b-256 179fdb2292eb836157fe64ac9f36a3be6285125ff2b998ba65f2db588eb75b10

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 afb4ff9e2482cbe3ea862876a37d0f7fbc9e019cbb464cac76d7a96122286a52
MD5 155f7ab5af1f833857a3550d4aef1435
BLAKE2b-256 64b57463f3c3a33dbf9e3a21dd0d640702f0b709493a9287d0e42712274b515a

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 05f425359695f5c4da7eafa6b4b82f1ceb3ce35b8466c4137d84f77b3fd9b87b
MD5 d3f72db09a520465d344797773436e4c
BLAKE2b-256 1034b6e58c8cc3ac0bf121e7630db353b853a2545654fa1bdcccf68ead65baa8

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ce7018e4d01f401ddde3b089414d552b5b57eb4feec7a5acb8e7a0002d3fa2a
MD5 71041a574ea57faafa6d6d36f65b4b54
BLAKE2b-256 4a3d51e254443c8ad5ee88cdab21fd46c31a48868862f8c0fdec28d4f26482df

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c5cf05e67e23e1b53665cd2e7b2e5eb7b41db8a0314a2b263589beb4cbd8120
MD5 551811baadfe3901f1cc477bcd5a2fa7
BLAKE2b-256 be0af3661c97ea144ba57533127d02a2a464292b8b26a53e5091d2c4c1f63cf6

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a7f2f49e3ee1b95959e4a27958d3f8e3c58621b50b69cb9b8735a2b3af21a16
MD5 c2b3fed351b90d2b33d14c0efb3d85df
BLAKE2b-256 b938d7024acb47aee64f71a01036175c6f19d0ea7a3e08089ee2324e66c584cd

See more details on using hashes here.

File details

Details for the file fastatomstruct-1.5.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fastatomstruct-1.5.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6bcdec993d8d2d23d98fd154f66b2fd7d3f1c718db769ed670a0f5b475526b1
MD5 2e07e9d448a63b7076885af7d01f95fb
BLAKE2b-256 d3db05536d29a2d995005a9019f34d53cf42c86040aff39ddff45537054c2283

See more details on using hashes here.

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