Skip to main content

Powerful, efficient trajectory analysis in scientific Python.

Project description

Citing freud PyPI conda-forge ReadTheDocs Binder GitHub-Stars

Overview

The freud Python library provides a simple, flexible, powerful set of tools for analyzing trajectories obtained from molecular dynamics or Monte Carlo simulations. High performance, parallelized C++ is used to compute standard tools such as radial distribution functions, correlation functions, order parameters, and clusters, as well as original analysis methods including potentials of mean force and torque (PMFTs) and local environment matching. The freud library supports many input formats and outputs NumPy arrays, enabling integration with the scientific Python ecosystem for many typical materials science workflows.

Resources

Citation

When using freud to process data for publication, please use this citation.

Installation

freud is available on conda-forge for the linux-64, osx-64, osx-arm64 and win-64 architectures. Install with:

mamba install freud

freud is also available on PyPI:

python3 -m pip install freud-analysis

If you need more detailed information or wish to install freud from source, please refer to the Installation Guide to compile freud from source.

Examples

The freud library is called using Python scripts. Many core features are demonstrated in the freud documentation. The examples come in the form of Jupyter notebooks, which can also be downloaded from the freud examples repository or launched interactively on Binder. Below is a sample script that computes the radial distribution function for a simulation run with HOOMD-blue and saved into a GSD file.

import freud
import gsd.hoomd

# Create a freud compute object (RDF is the canonical example)
rdf = freud.density.RDF(bins=50, r_max=5)

# Load a GSD trajectory (see docs for other formats)
traj = gsd.hoomd.open('trajectory.gsd', 'rb')
for frame in traj:
    rdf.compute(system=frame, reset=False)

# Get bin centers, RDF data from attributes
r = rdf.bin_centers
y = rdf.rdf

Support and Contribution

Please visit our repository on GitHub for the library source code. Any issues or bugs may be reported at our issue tracker, while questions and discussion can be directed to our discussion board. All contributions to freud are welcomed via pull requests!

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

freud_analysis-3.3.1.tar.gz (5.7 MB view details)

Uploaded Source

Built Distributions

freud_analysis-3.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

freud_analysis-3.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

freud_analysis-3.3.1-cp313-cp313-macosx_11_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

freud_analysis-3.3.1-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

freud_analysis-3.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

freud_analysis-3.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

freud_analysis-3.3.1-cp312-cp312-macosx_11_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

freud_analysis-3.3.1-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

freud_analysis-3.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

freud_analysis-3.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

freud_analysis-3.3.1-cp311-cp311-macosx_11_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

freud_analysis-3.3.1-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

freud_analysis-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

freud_analysis-3.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

freud_analysis-3.3.1-cp310-cp310-macosx_11_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

freud_analysis-3.3.1-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

freud_analysis-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

freud_analysis-3.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

freud_analysis-3.3.1-cp39-cp39-macosx_11_0_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

freud_analysis-3.3.1-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file freud_analysis-3.3.1.tar.gz.

File metadata

  • Download URL: freud_analysis-3.3.1.tar.gz
  • Upload date:
  • Size: 5.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for freud_analysis-3.3.1.tar.gz
Algorithm Hash digest
SHA256 fb4a6d80d278ee15c5bd2168f7873ce9600bb936fb1513a61418c18b066129d2
MD5 320b482a04613d34a96936a8feb3c89b
BLAKE2b-256 45808c9e0bbe5cf241738ff380eb08e844286f2b881521ab3a5e2374dd27fb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1.tar.gz:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6cf78360d820a6221ac2f5a2ff2e22729ce6d66b58a94d5989916823eb44356
MD5 044c435dec102a0594dbc0883b72496d
BLAKE2b-256 9cbb94c15f837b3b2fbe8ae48f23f932f4a49d689841432d907bdb8398f72a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7ae8040bceda5a6e1e727e6f0cbedeb5bf964968fa49e2d374d07f1159802a1
MD5 5a76bbd4648d8e13a57709df47ca9142
BLAKE2b-256 c10ad1798799c8a567603dcac4cffa305258571d76288249602708bc491cfd99

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2e591fceed3fd6947c935ff1f9bbe1b9aac7b132bd3f6b810754484e9870969b
MD5 b0342cf652b63431fbd2386bbb826e9b
BLAKE2b-256 779920c2bed8107e0a3fdff5e910b73d6c8fa509514705a766f4dfc978bf09ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38238dd5da38f08ea48512e2cb8e52534e29e25e7c461e3dfae836291f242467
MD5 52009c034cb1d881a4ecffb33930fdb4
BLAKE2b-256 83b13d817b92e3f853da8fbe97d4ee33d366278ca0d631cf9e019abbd1de5a00

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd1cf3f992c33f3a478d5c3114a4cef1363f063c37f456da61ed614000043611
MD5 59c6f99941d09e699c05a7a54566567c
BLAKE2b-256 78d210fa24f48c5967260978ceaddba8581a6414a6852bc9e1fcc103dac332af

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b8c00bd60a464c55b024470babc0bc024b07629fee46176b42b2a4a2debca81
MD5 2a450d2e3a3ed9674d1875c786671184
BLAKE2b-256 6767fceeafd5fc86bd5007c344de0fe7bbd7080430ceb821b8c5cac948813154

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 399ebd664fd5c5d343cfc3e6c407486b9fa5a04809c5749097293788446828de
MD5 56131bffd010cf547825fef1f7158d91
BLAKE2b-256 90f1f24827ffef6b2736da1052b5576f9d1f580faa43efb6211897de9d958446

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf9d00a76243855250cda8b20f1d48a9237b6a23352a0b3e27c0b108ac3aaf16
MD5 f62a606b477bbb1ba8031d10961e7440
BLAKE2b-256 f3f63d9142afba5a50ff9b5b1591923187c1b52dc10ff39ef0f0087b0cc6a349

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bed6c581ab0a4f64f6ede5b25b96c68ba180ce10b639ace647033c02d7cf303c
MD5 6dd4915d8696e5e939f31a452c388a6a
BLAKE2b-256 a2888e49bc7d58a7e96b9f7fed4273a47825224cd9401ffa0198c4cdb2dcf1f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 448ada9c19aa3122df09db6885fd21f15fe18242de806c65a7ee81a4d6cfedb0
MD5 b384e1d716923b4fb0cd474094b37bfe
BLAKE2b-256 961cc17a054715a3e12e2d2e58fc7ee3bea018ff765e3601d1a9a0e04fe5c336

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8867cd6004952ad4f8df4444547cb8e7af11f26f784ce690c3a95207d695a7da
MD5 07fa9e18259b713b30f010d2e9776410
BLAKE2b-256 450b1fd1316e8899c0aa863700aaa33d3ac37eaa1a0002f057ec65dce9466a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51445519286971217691640810e634882b5e7dd0dae46b9425475ec207ff0423
MD5 771e065b38aa7fc2d504aa7e5f8f308f
BLAKE2b-256 94103d5e3bd730e5139cf6f89a09d1127627e68188a7f45f9ebddfbb88f0f475

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd03f73c63808bc913f7d4542d54707d5a49706403ab3f3f1f47ac45fa4120a0
MD5 bfaf9323eae8d924795f080fa1b3dd1f
BLAKE2b-256 c6e638774a2c23044713bd62bae62c6d1b410b012104143f9be56a2df87e774e

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c5edebf7eb2cc61bb0c53002195415e1b3b596eec6c8960105fae958035acf2
MD5 7e9a142d0dd7668a412ec705e48569a8
BLAKE2b-256 efdde9545d9c08c38f4bf8be18233e6424567a9d89d0529e2beebffcaf1d14a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1ff9313643ca5fa289642fb1bafcb875b09f7ad7717936c71c5de08b836e4202
MD5 bf402161e7d8d87b3ed7d5f34fa29ba4
BLAKE2b-256 aabc3de7d1c7df2b199e623888e0910014b47854b8e0be9f8202e5c4eb8ac450

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8956668a5e9ec6842ab8e136c579e180767e5686723ea182844304612d55c82
MD5 f37ebfb919bf3b2652df7523264de296
BLAKE2b-256 607ee08dbae07ff886de1b11439bbdeea19d0fe9e8a6e21171a6f213de035b41

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68328231befdb795af47563616c295bd12450ff5842945ffce482c5906a6630d
MD5 551b2b3db5ec0efd397e6a7c17b308cf
BLAKE2b-256 c4fea1dc988de66fb1ae0489cd47e36f095c88761eab3a803dce08ba36e7b1d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f2a1516c56f48cb81a03d0e6dea9a93a61f451dbe33f47b1c6d26627f97ffba
MD5 3b4bcbdd5ffd9e95c3a2a620cbd9a283
BLAKE2b-256 253c239f6c874ea4cd718fd03ada89a26892229c195002e97d8a58b8939858e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5dfe88a2de533b3c3389d0fad7199aed9dd1c87ef7db407e1a171328601f0f05
MD5 948ef3db81ee8db000b7ba206a1ef6ed
BLAKE2b-256 00ebf65784a27e3350721e8f74d42618eae9112590559eff903286656207edcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: release.yaml on glotzerlab/freud

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

File details

Details for the file freud_analysis-3.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for freud_analysis-3.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01708e5998991cdc123c06a5a1cd9c3b019db9071eb94f503dfe572c1a416673
MD5 35d57d42e2e30ef6f007f7266e7e0f1f
BLAKE2b-256 c5ce167c15b7454604ad2aa9e4c96de4a0a0d04f71e03df2a8a7c5b64d2273f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for freud_analysis-3.3.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yaml on glotzerlab/freud

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page