Name | freud-analysis JSON |
Version |
3.4.0
JSON |
| download |
home_page | None |
Summary | Powerful, efficient trajectory analysis in scientific Python. |
upload_time | 2025-08-05 20:42:38 |
maintainer | freud Developers |
docs_url | None |
author | The Glotzer Lab |
requires_python | >=3.9 |
license | BSD 3-Clause License for freud
Copyright (c) 2010-2025 The Regents of the University of Michigan
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
keywords |
simulation
analysis
molecular dynamics
soft matter
particle
system
computational
physics
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
=====
freud
=====
|Citing freud|
|PyPI|
|conda-forge|
|ReadTheDocs|
|Binder|
|GitHub-Stars|
.. |Citing freud| image:: https://img.shields.io/badge/cite-freud-informational.svg
:target: https://freud.readthedocs.io/en/stable/reference/citing.html
.. |PyPI| image:: https://img.shields.io/pypi/v/freud-analysis.svg
:target: https://pypi.org/project/freud-analysis/
.. |conda-forge| image:: https://img.shields.io/conda/vn/conda-forge/freud.svg
:target: https://anaconda.org/conda-forge/freud
.. |ReadTheDocs| image:: https://readthedocs.org/projects/freud/badge/?version=latest
:target: https://freud.readthedocs.io/en/latest/?badge=latest
.. |Binder| image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/glotzerlab/freud-examples/master?filepath=index.ipynb
.. |GitHub-Stars| image:: https://img.shields.io/github/stars/glotzerlab/freud.svg?style=social
:target: https://github.com/glotzerlab/freud
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 <https://freud.readthedocs.io/en/stable/topics/datainputs.html>`__
and outputs `NumPy arrays <https://numpy.org/>`__, enabling integration
with the scientific Python ecosystem for many typical materials science
workflows.
Resources
=========
- `Reference Documentation <https://freud.readthedocs.io/>`__: Examples, tutorials, topic guides, and package Python APIs.
- `Installation Guide <https://freud.readthedocs.io/en/stable/gettingstarted/installation.html>`__: Instructions for installing and compiling **freud**.
- `freud discussion board <https://github.com/glotzerlab/freud/discussions/>`__: Ask the **freud** user community for help.
- `GitHub repository <https://github.com/glotzerlab/freud>`__: Download the **freud** source code.
- `Issue tracker <https://github.com/glotzerlab/freud/issues>`__: Report issues or request features.
Related Tools
=============
- `HOOMD-blue <https://hoomd-blue.readthedocs.io/>`__: Perform MD / MC simulations that can be analyzed with **freud**.
- `signac <https://signac.readthedocs.io/>`__: Manage your workflow with **signac**.
Citation
========
When using **freud** to process data for publication, please `use this citation
<https://freud.readthedocs.io/en/stable/reference/citing.html>`__.
Installation
============
**freud** is available on conda-forge_ for the *linux-64*, *linux-aarch64*, *linux-ppc64le*,
*osx-64*, *osx-arm64* and *win-64* architectures. Install with:
.. code:: bash
mamba install freud
**freud** is also available on PyPI_:
.. code:: bash
python3 -m pip install freud-analysis
.. _conda-forge: https://conda-forge.org/
.. _PyPI: https://pypi.org/
If you need more detailed information or wish to install **freud** from source, please refer to the
`Installation Guide <https://freud.readthedocs.io/en/stable/gettingstarted/installation.html>`__ to
compile **freud** from source.
Examples
========
The **freud** library is called using Python scripts. Many core features are
`demonstrated in the freud documentation
<https://freud.readthedocs.io/en/stable/examples.html>`_. The examples come in
the form of Jupyter notebooks, which can also be downloaded from the `freud
examples repository <https://github.com/glotzerlab/freud-examples>`_ or
`launched interactively on Binder
<https://mybinder.org/v2/gh/glotzerlab/freud-examples/master?filepath=index.ipynb>`_.
Below is a sample script that computes the radial distribution function for a
simulation run with `HOOMD-blue <https://hoomd-blue.readthedocs.io/>`__ and
saved into a `GSD file <https://gsd.readthedocs.io/>`_.
.. code:: python
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 <https://github.com/glotzerlab/freud>`__ for the library source code.
Any issues or bugs may be reported at our `issue tracker <https://github.com/glotzerlab/freud/issues>`__, while questions and discussion can be directed to our `discussion board <https://github.com/glotzerlab/freud/discussions/>`__.
All contributions to **freud** are welcomed via pull requests!
Raw data
{
"_id": null,
"home_page": null,
"name": "freud-analysis",
"maintainer": "freud Developers",
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "simulation, analysis, molecular dynamics, soft matter, particle, system, computational, physics",
"author": "The Glotzer Lab",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/54/91/cea77667083f2e8e001cc2d4340a85aa544245f9e629239fe7c8ab23000d/freud_analysis-3.4.0.tar.gz",
"platform": null,
"description": "=====\nfreud\n=====\n\n|Citing freud|\n|PyPI|\n|conda-forge|\n|ReadTheDocs|\n|Binder|\n|GitHub-Stars|\n\n.. |Citing freud| image:: https://img.shields.io/badge/cite-freud-informational.svg\n :target: https://freud.readthedocs.io/en/stable/reference/citing.html\n.. |PyPI| image:: https://img.shields.io/pypi/v/freud-analysis.svg\n :target: https://pypi.org/project/freud-analysis/\n.. |conda-forge| image:: https://img.shields.io/conda/vn/conda-forge/freud.svg\n :target: https://anaconda.org/conda-forge/freud\n.. |ReadTheDocs| image:: https://readthedocs.org/projects/freud/badge/?version=latest\n :target: https://freud.readthedocs.io/en/latest/?badge=latest\n.. |Binder| image:: https://mybinder.org/badge_logo.svg\n :target: https://mybinder.org/v2/gh/glotzerlab/freud-examples/master?filepath=index.ipynb\n.. |GitHub-Stars| image:: https://img.shields.io/github/stars/glotzerlab/freud.svg?style=social\n :target: https://github.com/glotzerlab/freud\n\nOverview\n========\n\nThe **freud** Python library provides a simple, flexible, powerful set of tools\nfor analyzing trajectories obtained from molecular dynamics or Monte Carlo\nsimulations. High performance, parallelized C++ is used to compute standard\ntools such as radial distribution functions, correlation functions, order\nparameters, and clusters, as well as original analysis methods including\npotentials of mean force and torque (PMFTs) and local environment matching. The\n**freud** library supports\n`many input formats <https://freud.readthedocs.io/en/stable/topics/datainputs.html>`__\nand outputs `NumPy arrays <https://numpy.org/>`__, enabling integration\nwith the scientific Python ecosystem for many typical materials science\nworkflows.\n\nResources\n=========\n\n- `Reference Documentation <https://freud.readthedocs.io/>`__: Examples, tutorials, topic guides, and package Python APIs.\n- `Installation Guide <https://freud.readthedocs.io/en/stable/gettingstarted/installation.html>`__: Instructions for installing and compiling **freud**.\n- `freud discussion board <https://github.com/glotzerlab/freud/discussions/>`__: Ask the **freud** user community for help.\n- `GitHub repository <https://github.com/glotzerlab/freud>`__: Download the **freud** source code.\n- `Issue tracker <https://github.com/glotzerlab/freud/issues>`__: Report issues or request features.\n\nRelated Tools\n=============\n\n- `HOOMD-blue <https://hoomd-blue.readthedocs.io/>`__: Perform MD / MC simulations that can be analyzed with **freud**.\n- `signac <https://signac.readthedocs.io/>`__: Manage your workflow with **signac**.\n\nCitation\n========\n\nWhen using **freud** to process data for publication, please `use this citation\n<https://freud.readthedocs.io/en/stable/reference/citing.html>`__.\n\n\nInstallation\n============\n\n**freud** is available on conda-forge_ for the *linux-64*, *linux-aarch64*, *linux-ppc64le*,\n*osx-64*, *osx-arm64* and *win-64* architectures. Install with:\n\n.. code:: bash\n\n mamba install freud\n\n**freud** is also available on PyPI_:\n\n.. code:: bash\n\n python3 -m pip install freud-analysis\n\n.. _conda-forge: https://conda-forge.org/\n.. _PyPI: https://pypi.org/\n\nIf you need more detailed information or wish to install **freud** from source, please refer to the\n`Installation Guide <https://freud.readthedocs.io/en/stable/gettingstarted/installation.html>`__ to\ncompile **freud** from source.\n\n\nExamples\n========\n\nThe **freud** library is called using Python scripts. Many core features are\n`demonstrated in the freud documentation\n<https://freud.readthedocs.io/en/stable/examples.html>`_. The examples come in\nthe form of Jupyter notebooks, which can also be downloaded from the `freud\nexamples repository <https://github.com/glotzerlab/freud-examples>`_ or\n`launched interactively on Binder\n<https://mybinder.org/v2/gh/glotzerlab/freud-examples/master?filepath=index.ipynb>`_.\nBelow is a sample script that computes the radial distribution function for a\nsimulation run with `HOOMD-blue <https://hoomd-blue.readthedocs.io/>`__ and\nsaved into a `GSD file <https://gsd.readthedocs.io/>`_.\n\n.. code:: python\n\n import freud\n import gsd.hoomd\n\n # Create a freud compute object (RDF is the canonical example)\n rdf = freud.density.RDF(bins=50, r_max=5)\n\n # Load a GSD trajectory (see docs for other formats)\n traj = gsd.hoomd.open('trajectory.gsd', 'rb')\n for frame in traj:\n rdf.compute(system=frame, reset=False)\n\n # Get bin centers, RDF data from attributes\n r = rdf.bin_centers\n y = rdf.rdf\n\n\nSupport and Contribution\n========================\n\nPlease visit our repository on `GitHub <https://github.com/glotzerlab/freud>`__ for the library source code.\nAny issues or bugs may be reported at our `issue tracker <https://github.com/glotzerlab/freud/issues>`__, while questions and discussion can be directed to our `discussion board <https://github.com/glotzerlab/freud/discussions/>`__.\nAll contributions to **freud** are welcomed via pull requests!\n",
"bugtrack_url": null,
"license": "BSD 3-Clause License for freud\n \n Copyright (c) 2010-2025 The Regents of the University of Michigan\n All rights reserved.\n \n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n \n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n \n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n \n 3. Neither the name of the copyright holder nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n \n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\n ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n ",
"summary": "Powerful, efficient trajectory analysis in scientific Python.",
"version": "3.4.0",
"project_urls": {
"Documentation": "https://freud.readthedocs.io",
"Download": "https://pypi.org/project/freud-analysis/",
"Issues": "https://github.com/glotzerlab/freud/issues",
"Source": "https://github.com/glotzerlab/freud"
},
"split_keywords": [
"simulation",
" analysis",
" molecular dynamics",
" soft matter",
" particle",
" system",
" computational",
" physics"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "5eff3bf7ac8fbacbb677b25ba627126301a1c17737b2e0dd1564bb24507ec37c",
"md5": "354a656b3362941e9c8ebb4c6605aa3c",
"sha256": "12ec0c45d324efb14db4fdce295c4205b601657dd133351be6fd7684bb23cbeb"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "354a656b3362941e9c8ebb4c6605aa3c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1309899,
"upload_time": "2025-08-05T20:41:54",
"upload_time_iso_8601": "2025-08-05T20:41:54.697303Z",
"url": "https://files.pythonhosted.org/packages/5e/ff/3bf7ac8fbacbb677b25ba627126301a1c17737b2e0dd1564bb24507ec37c/freud_analysis-3.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "236b444e922ed5d46e7d50eb6098970b4ece922f21f8127ffa364f04fe84797c",
"md5": "592088c3485edde4217a22ee9026656a",
"sha256": "a6b060d1cf0a4f0189d35616929f1ce5bc04eb6e9002cf42a66453a50d75169e"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp310-cp310-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "592088c3485edde4217a22ee9026656a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1527249,
"upload_time": "2025-08-05T20:41:57",
"upload_time_iso_8601": "2025-08-05T20:41:57.571824Z",
"url": "https://files.pythonhosted.org/packages/23/6b/444e922ed5d46e7d50eb6098970b4ece922f21f8127ffa364f04fe84797c/freud_analysis-3.4.0-cp310-cp310-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9ee63c26b1fff94c030c436c137df10da186403084526b7ce3acb08c851d2a5",
"md5": "c4f4b9d9b64344f85e1d1df3cee45820",
"sha256": "8018b471d5294a44dc20dacdb2d24281044e4314d95cb86685f7dea43c3b4d8c"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c4f4b9d9b64344f85e1d1df3cee45820",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1969291,
"upload_time": "2025-08-05T20:41:59",
"upload_time_iso_8601": "2025-08-05T20:41:59.366574Z",
"url": "https://files.pythonhosted.org/packages/c9/ee/63c26b1fff94c030c436c137df10da186403084526b7ce3acb08c851d2a5/freud_analysis-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f787539973a5f6f8ad92b4aaee39d07589b491dc16048b69f28458e71fb8947",
"md5": "331454dbf03edfee8dd7bf2ef7c8b84a",
"sha256": "4c7bd54e3fefc1d7ee2c67ab94c0d1399fc460e4c9ef6ccd493c184a98178fc1"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "331454dbf03edfee8dd7bf2ef7c8b84a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2116653,
"upload_time": "2025-08-05T20:42:01",
"upload_time_iso_8601": "2025-08-05T20:42:01.159948Z",
"url": "https://files.pythonhosted.org/packages/1f/78/7539973a5f6f8ad92b4aaee39d07589b491dc16048b69f28458e71fb8947/freud_analysis-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7890dcc725efbcac4ff99a29a7e1f2025bb067e68220ee96fdff0d95a47203cf",
"md5": "deb73a2c728db2513d2500f99906d23d",
"sha256": "378c7b9aa4693a48c6b5085bb3fd049e99fe54df8abf3d3cbb7f66c84cf4f34b"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "deb73a2c728db2513d2500f99906d23d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1604944,
"upload_time": "2025-08-05T20:42:02",
"upload_time_iso_8601": "2025-08-05T20:42:02.886688Z",
"url": "https://files.pythonhosted.org/packages/78/90/dcc725efbcac4ff99a29a7e1f2025bb067e68220ee96fdff0d95a47203cf/freud_analysis-3.4.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c71a73e29516b108b6722e5c54acc94b7bb371f41bc0aa5d2cabaaf3ad0902e",
"md5": "fb0221171abc40c020eda94c5fe98b3d",
"sha256": "34a41c703762e0d6e5ffaba5005997cba13e3865c1199eb2096015315ea2f7d5"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fb0221171abc40c020eda94c5fe98b3d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1310114,
"upload_time": "2025-08-05T20:42:04",
"upload_time_iso_8601": "2025-08-05T20:42:04.675909Z",
"url": "https://files.pythonhosted.org/packages/0c/71/a73e29516b108b6722e5c54acc94b7bb371f41bc0aa5d2cabaaf3ad0902e/freud_analysis-3.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9b75fa6639e2e8844d57d459e08e85b960d56c7346eefd1e3883903a2d6fb93",
"md5": "5f29bcc672aadacb76b561b66c079ca7",
"sha256": "933b55d1198b978a80389a9286dd6341a86049edaa20876bee9f853a961a6290"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp311-cp311-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "5f29bcc672aadacb76b561b66c079ca7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1527365,
"upload_time": "2025-08-05T20:42:06",
"upload_time_iso_8601": "2025-08-05T20:42:06.468908Z",
"url": "https://files.pythonhosted.org/packages/d9/b7/5fa6639e2e8844d57d459e08e85b960d56c7346eefd1e3883903a2d6fb93/freud_analysis-3.4.0-cp311-cp311-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a104d248e81faf40215182c52c0529edb4ea89122e8563e594a9e1f60a45c710",
"md5": "ca4cf339edc2da65e200afb6b41bf4fb",
"sha256": "310748dce7f9ab78646a0c03d29c7a4bb9dc5f2928aee0d07f19ec28ab00e8d0"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ca4cf339edc2da65e200afb6b41bf4fb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1969055,
"upload_time": "2025-08-05T20:42:07",
"upload_time_iso_8601": "2025-08-05T20:42:07.981027Z",
"url": "https://files.pythonhosted.org/packages/a1/04/d248e81faf40215182c52c0529edb4ea89122e8563e594a9e1f60a45c710/freud_analysis-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed86fa49716e8b2b29ca5f911a1915a3b942394b1df0d2f2fbeee0e9c743cf1f",
"md5": "79f12bfd963f098c46f9c7864f1fe62f",
"sha256": "f3b6febc439c6dbe7d264f8df726c9e6340d3f16713bf396dba9997e220559e8"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "79f12bfd963f098c46f9c7864f1fe62f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2116504,
"upload_time": "2025-08-05T20:42:09",
"upload_time_iso_8601": "2025-08-05T20:42:09.491379Z",
"url": "https://files.pythonhosted.org/packages/ed/86/fa49716e8b2b29ca5f911a1915a3b942394b1df0d2f2fbeee0e9c743cf1f/freud_analysis-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9078db2f7969b40dcddfc5663d06379d55946a637a326095ea4d45bcd725504",
"md5": "40538b24026a8bc6dffd3d3550cfce93",
"sha256": "e731f80d1da1774167b264b7cd15a1f59acd685d5755e667ad7381882f3db8f2"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "40538b24026a8bc6dffd3d3550cfce93",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1604584,
"upload_time": "2025-08-05T20:42:10",
"upload_time_iso_8601": "2025-08-05T20:42:10.974514Z",
"url": "https://files.pythonhosted.org/packages/d9/07/8db2f7969b40dcddfc5663d06379d55946a637a326095ea4d45bcd725504/freud_analysis-3.4.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec7f0e536dfa4afab9b9593b0113b85cb8e9064769dd29c980fdda93ccf52c5a",
"md5": "ad849c9e79b4f13e3bec6e1da2fbb7cd",
"sha256": "491355e9c85e947e7de2efc0f2ef1dc7d625bc01dc29c544903255b65a618b9e"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ad849c9e79b4f13e3bec6e1da2fbb7cd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1302518,
"upload_time": "2025-08-05T20:42:12",
"upload_time_iso_8601": "2025-08-05T20:42:12.787113Z",
"url": "https://files.pythonhosted.org/packages/ec/7f/0e536dfa4afab9b9593b0113b85cb8e9064769dd29c980fdda93ccf52c5a/freud_analysis-3.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "425dae826dad68e16e5e81add39eceb150c16ff5efa16aa7722abc9252348d86",
"md5": "57f09d4cdca6b3ab689b96b85f80dab3",
"sha256": "144b774025507ee3f72f25ba6c5460ef0391db8f796ea37c54bfe70975e5414e"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp312-cp312-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "57f09d4cdca6b3ab689b96b85f80dab3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1523263,
"upload_time": "2025-08-05T20:42:14",
"upload_time_iso_8601": "2025-08-05T20:42:14.191081Z",
"url": "https://files.pythonhosted.org/packages/42/5d/ae826dad68e16e5e81add39eceb150c16ff5efa16aa7722abc9252348d86/freud_analysis-3.4.0-cp312-cp312-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72f73e90eac3815c3008c6c6dc78e7f334e3350c42cd912801af8530c18381a8",
"md5": "3ac78ee5440c1cae2d763fe737ea6117",
"sha256": "146b46ac2247fd4acd15a16f5aadbd65f6a19af0e0e6f95a31a73e3ac910679d"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3ac78ee5440c1cae2d763fe737ea6117",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1956079,
"upload_time": "2025-08-05T20:42:16",
"upload_time_iso_8601": "2025-08-05T20:42:16.037816Z",
"url": "https://files.pythonhosted.org/packages/72/f7/3e90eac3815c3008c6c6dc78e7f334e3350c42cd912801af8530c18381a8/freud_analysis-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24b57bb8c3a325085ed2be9b224917b2e2964c0bb5004fb8a4da1d2bec243720",
"md5": "d30175cbe318e145b75a249dbf683af6",
"sha256": "640ae15709af09e95c8c6c4f28a630cfe99763dbf1cb55a21dd310cda4b5e7d9"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d30175cbe318e145b75a249dbf683af6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2106007,
"upload_time": "2025-08-05T20:42:17",
"upload_time_iso_8601": "2025-08-05T20:42:17.695831Z",
"url": "https://files.pythonhosted.org/packages/24/b5/7bb8c3a325085ed2be9b224917b2e2964c0bb5004fb8a4da1d2bec243720/freud_analysis-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ceaa1418b23645c534969f4c1db9f78545741a0c34f592fa72ec0cfa2b0674a6",
"md5": "d6afedd87a39e874d6f5ea6863e23589",
"sha256": "977924073f466d3302716bbce9a45e719119bd4fae0d64792c7b04a6dc99e43d"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "d6afedd87a39e874d6f5ea6863e23589",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1598382,
"upload_time": "2025-08-05T20:42:19",
"upload_time_iso_8601": "2025-08-05T20:42:19.549949Z",
"url": "https://files.pythonhosted.org/packages/ce/aa/1418b23645c534969f4c1db9f78545741a0c34f592fa72ec0cfa2b0674a6/freud_analysis-3.4.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20d68b6179deaf4a4d1327e94e47a2ea3fb19e9f239bc2ee54bcc7c48525ead6",
"md5": "35d4d1785414525a58f88c9abfcd6b6b",
"sha256": "9e944f76d046014d292225ec76ba248843f70b6100e04a3345f2fa35e4a872f5"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "35d4d1785414525a58f88c9abfcd6b6b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1301736,
"upload_time": "2025-08-05T20:42:21",
"upload_time_iso_8601": "2025-08-05T20:42:21.276367Z",
"url": "https://files.pythonhosted.org/packages/20/d6/8b6179deaf4a4d1327e94e47a2ea3fb19e9f239bc2ee54bcc7c48525ead6/freud_analysis-3.4.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "583146fe254d19ab1c67ac98f61b37899d92393b0f2a27a1f96000ff1709191c",
"md5": "79d945da82ea839a28a7420e645e1b59",
"sha256": "3e30e49175096e1f779494ce6d68b83b2cb1c9e2706236d60828cb72898d6172"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp313-cp313-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "79d945da82ea839a28a7420e645e1b59",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1522727,
"upload_time": "2025-08-05T20:42:23",
"upload_time_iso_8601": "2025-08-05T20:42:23.051581Z",
"url": "https://files.pythonhosted.org/packages/58/31/46fe254d19ab1c67ac98f61b37899d92393b0f2a27a1f96000ff1709191c/freud_analysis-3.4.0-cp313-cp313-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3194d2bf98dead4f264f66c0a81e432a77fc1b74af0ab248cba854f03fe1b4d3",
"md5": "91b1e9a155eceb9dd3c5cb9a71655559",
"sha256": "29fac39d00dd006a4984bf18a3c4608b23b77b67a5cca49c6aa6f9a2a010f268"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "91b1e9a155eceb9dd3c5cb9a71655559",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1955593,
"upload_time": "2025-08-05T20:42:24",
"upload_time_iso_8601": "2025-08-05T20:42:24.946673Z",
"url": "https://files.pythonhosted.org/packages/31/94/d2bf98dead4f264f66c0a81e432a77fc1b74af0ab248cba854f03fe1b4d3/freud_analysis-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "891ba581bf61176795e04981a96e297e6082d734191e93e6941f73b3ce5b63c5",
"md5": "591e33594768c76f7300d1f5a0172fb7",
"sha256": "59d751e10d256bf17cc3a1b50343f8cef0b6bb443b3b045a842f47b0cb437e27"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "591e33594768c76f7300d1f5a0172fb7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2105474,
"upload_time": "2025-08-05T20:42:26",
"upload_time_iso_8601": "2025-08-05T20:42:26.844870Z",
"url": "https://files.pythonhosted.org/packages/89/1b/a581bf61176795e04981a96e297e6082d734191e93e6941f73b3ce5b63c5/freud_analysis-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b67e978f705d623bce97d2c0eb74a67cf56b72fe748a2502be4127e6ff6877b",
"md5": "93130af3304bed08f63e09e4fa963a3a",
"sha256": "e3502df6fa60eafd4e7177f74d85c80806588e6087a8a3595a28d14b1b42d035"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "93130af3304bed08f63e09e4fa963a3a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1597858,
"upload_time": "2025-08-05T20:42:28",
"upload_time_iso_8601": "2025-08-05T20:42:28.314744Z",
"url": "https://files.pythonhosted.org/packages/1b/67/e978f705d623bce97d2c0eb74a67cf56b72fe748a2502be4127e6ff6877b/freud_analysis-3.4.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03df32ffb0edeb88d188af31994df7e2b503c8e4645b431cd20ad5578e8f0d66",
"md5": "ab80f18c47d0f5d6ad1f7f59d4b270a4",
"sha256": "19db3fff770ce5abe6e3f6dff2b9039fe69629120bc1b1f67cc837b6de4ac4a2"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ab80f18c47d0f5d6ad1f7f59d4b270a4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1311571,
"upload_time": "2025-08-05T20:42:29",
"upload_time_iso_8601": "2025-08-05T20:42:29.813630Z",
"url": "https://files.pythonhosted.org/packages/03/df/32ffb0edeb88d188af31994df7e2b503c8e4645b431cd20ad5578e8f0d66/freud_analysis-3.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6776c9ab27bc0f9f6bb2f1bb07e8116b98de2331aa08cb509b9898205bd2af7f",
"md5": "2862c098b2593d3407f0259f640997fe",
"sha256": "dcbb7976b5e47a23c32949137ee09c050f122ff5f6ab3000426c0c47de72f12f"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp39-cp39-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "2862c098b2593d3407f0259f640997fe",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1529338,
"upload_time": "2025-08-05T20:42:31",
"upload_time_iso_8601": "2025-08-05T20:42:31.246312Z",
"url": "https://files.pythonhosted.org/packages/67/76/c9ab27bc0f9f6bb2f1bb07e8116b98de2331aa08cb509b9898205bd2af7f/freud_analysis-3.4.0-cp39-cp39-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "317226b78de7f142bd09f00a59b1e7c698780fbd19bcee8822d793d076069b2a",
"md5": "f1acd3256cb3f2c3d2a9c6b66da97b8e",
"sha256": "063ba4ed46f294e58a8ed18c5734bbb9adc7583ad7943d479915699205abd4d1"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f1acd3256cb3f2c3d2a9c6b66da97b8e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1972030,
"upload_time": "2025-08-05T20:42:33",
"upload_time_iso_8601": "2025-08-05T20:42:33.024985Z",
"url": "https://files.pythonhosted.org/packages/31/72/26b78de7f142bd09f00a59b1e7c698780fbd19bcee8822d793d076069b2a/freud_analysis-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93d06146d410801b42dd65f54c967dcc289a14aaccd7d33993324546b75afd0b",
"md5": "89aac9a418a336f5d089300caeabd411",
"sha256": "9d95aaa8dc5da5e859f1850a61b2ffb3399d7c798147965ac4a45cd01bd65b91"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "89aac9a418a336f5d089300caeabd411",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2118402,
"upload_time": "2025-08-05T20:42:34",
"upload_time_iso_8601": "2025-08-05T20:42:34.586461Z",
"url": "https://files.pythonhosted.org/packages/93/d0/6146d410801b42dd65f54c967dcc289a14aaccd7d33993324546b75afd0b/freud_analysis-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30f4989730909bf49be644e6b9c4850fbe739af9bdf38af64b982297f35fe48a",
"md5": "84f3e57f273e24808b46fd719e2b25dd",
"sha256": "f5268cd8f551fc5fbd003c090df9174f62dd24159fad49b25ad5d4187f6b90dc"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "84f3e57f273e24808b46fd719e2b25dd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1609416,
"upload_time": "2025-08-05T20:42:36",
"upload_time_iso_8601": "2025-08-05T20:42:36.072062Z",
"url": "https://files.pythonhosted.org/packages/30/f4/989730909bf49be644e6b9c4850fbe739af9bdf38af64b982297f35fe48a/freud_analysis-3.4.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5491cea77667083f2e8e001cc2d4340a85aa544245f9e629239fe7c8ab23000d",
"md5": "6aab9b7bc3d68d9f8fe90be55702f5c0",
"sha256": "74e5b71c45df097ddf79c978d2e6b0510d03baf0ac999a90e7797880a895e9ea"
},
"downloads": -1,
"filename": "freud_analysis-3.4.0.tar.gz",
"has_sig": false,
"md5_digest": "6aab9b7bc3d68d9f8fe90be55702f5c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 5674132,
"upload_time": "2025-08-05T20:42:38",
"upload_time_iso_8601": "2025-08-05T20:42:38.061845Z",
"url": "https://files.pythonhosted.org/packages/54/91/cea77667083f2e8e001cc2d4340a85aa544245f9e629239fe7c8ab23000d/freud_analysis-3.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-05 20:42:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "glotzerlab",
"github_project": "freud",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "freud-analysis"
}