diffpy.srreal


Namediffpy.srreal JSON
Version 1.4.0 PyPI version JSON
download
home_pageNone
SummaryCalculators for PDF, bond valence sum, and other quantities based on atom pair interaction.
upload_time2025-08-02 01:41:30
maintainerNone
docs_urlNone
authorNone
requires_python<3.14,>=3.11
licenseNone
keywords pdf bvs atom overlap calculator real-space
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |Icon| |title|_
===============

.. |title| replace:: diffpy.srreal
.. _title: https://diffpy.github.io/diffpy.srreal

.. |Icon| image:: https://avatars.githubusercontent.com/diffpy
        :target: https://diffpy.github.io/diffpy.srreal
        :height: 100px

|PyPI| |Forge| |PythonVersion| |PR|

|CI| |Codecov| |Black| |Tracking|

.. |Black| image:: https://img.shields.io/badge/code_style-black-black
        :target: https://github.com/psf/black

.. |CI| image:: https://github.com/diffpy/diffpy.srreal/actions/workflows/matrix-and-codecov-on-merge-to-main.yml/badge.svg
        :target: https://github.com/diffpy/diffpy.srreal/actions/workflows/matrix-and-codecov-on-merge-to-main.yml

.. |Codecov| image:: https://codecov.io/gh/diffpy/diffpy.srreal/branch/main/graph/badge.svg
        :target: https://codecov.io/gh/diffpy/diffpy.srreal

.. |Forge| image:: https://img.shields.io/conda/vn/conda-forge/diffpy.srreal
        :target: https://anaconda.org/conda-forge/diffpy.srreal

.. |PR| image:: https://img.shields.io/badge/PR-Welcome-29ab47ff

.. |PyPI| image:: https://img.shields.io/pypi/v/diffpy.srreal
        :target: https://pypi.org/project/diffpy.srreal/

.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/diffpy.srreal
        :target: https://pypi.org/project/diffpy.srreal/

.. |Tracking| image:: https://img.shields.io/badge/issue_tracking-github-blue
        :target: https://github.com/diffpy/diffpy.srreal/issues

Calculators for PDF, bond valence sum, and other quantities based on atom pair interaction.

The diffpy.srreal package provides calculators for atomic pair distribution
function (PDF), bond valence sums (BVS), atom overlaps for a hard-sphere
model, bond distances and directions up to specified maximum distance.   The
atomic structure models are represented with internal classes as non-periodic,
periodic or structures with space group symmetries.  The package provides
implicit adapters from diffpy.structure classes or from Crystal or Molecule
objects from pyobjcryst.  Adapters can be easily defined for any other
structure representations in Python allowing their direct use with the
calculators.  Calculators support two evaluation models - BASIC, which
performs a full pair-summation every time, and OPTIMIZED, which updates only
pair contributions that have changed since the last evaluation.  Calculations
can be split among parallel jobs using Python multiprocessing package or any
other library that provides parallel map function.  PDF calculations can
be done in two modes - either as a real-space summation of peak profiles
(PDFCalculator) or as a reciprocal-space Debye summation and Fourier
transform of the total scattering structure function (DebyePDFCalculator).

The diffpy.srreal package is a Python binding to the C++ library libdiffpy
(https://github.com/diffpy/libdiffpy).  Calculators are created as
objects of a given calculator type and so multiple instances of the same
calculator type can exist with different configurations.  Calculators are
composed of other objects that perform lower-level tasks, such as calculating
peak profile or looking up atom scattering factors.  These objects can be
re-assigned at runtime allowing to easily customize the calculation procedure.
New classes can be defined using object inheritance either in Python or in C++
and used with the existing calculators; as an example, this allows to
calculate PDF with a user-defined profile function.  A new calculator class
can be also defined for any quantity that is obtained by iteration over atom
pairs, by defining only the function that processes atom-pair contributions.

For more information about the diffpy.srreal library, please consult our `online documentation <https://diffpy.github.io/diffpy.srreal>`_.

Citation
--------

If you use diffpy.srreal in a scientific publication, we would like you to cite this package as

        diffpy.srreal Package, https://github.com/diffpy/diffpy.srreal

Installation
------------

The preferred method is to use `Miniconda Python
<https://docs.conda.io/projects/miniconda/en/latest/miniconda-install.html>`_
and install from the "conda-forge" channel of Conda packages.

To add "conda-forge" to the conda channels, run the following in a terminal. ::

        conda config --add channels conda-forge

We want to install our packages in a suitable conda environment.
The following creates and activates a new environment named ``diffpy.srreal_env`` ::

        conda create -n diffpy.srreal_env diffpy.srreal
        conda activate diffpy.srreal_env

To confirm that the installation was successful, type ::

        python -c "import diffpy.srreal; print(diffpy.srreal.__version__)"

The output should print the latest version displayed on the badges above.

If the above does not work, you can use ``pip`` to download and install the latest release from
`Python Package Index <https://pypi.python.org>`_.
To install using ``pip`` into your ``diffpy.srreal_env`` environment, type ::

        pip install diffpy.srreal

If you prefer to install from sources, after installing the dependencies, obtain the source archive from
`GitHub <https://github.com/diffpy/diffpy.srreal/>`_. Once installed, ``cd`` into your ``diffpy.srreal`` directory
and run the following ::

        pip install .

Getting Started
---------------

You may consult our `online documentation <https://diffpy.github.io/diffpy.srreal>`_ for tutorials and API references.

Support and Contribute
----------------------

`Diffpy user group <https://groups.google.com/g/diffpy-users>`_ is the discussion forum for general questions and discussions about the use of diffpy.srreal. Please join the diffpy.srreal users community by joining the Google group. The diffpy.srreal project welcomes your expertise and enthusiasm!

If you see a bug or want to request a feature, please `report it as an issue <https://github.com/diffpy/diffpy.srreal/issues>`_ and/or `submit a fix as a PR <https://github.com/diffpy/diffpy.srreal/pulls>`_. You can also post it to the `Diffpy user group <https://groups.google.com/g/diffpy-users>`_.

Feel free to fork the project and contribute. To install diffpy.srreal
in a development mode, with its sources being directly used by Python
rather than copied to a package directory, use the following in the root
directory ::

        pip install -e .

To ensure code quality and to prevent accidental commits into the default branch, please set up the use of our pre-commit
hooks.

1. Install pre-commit in your working environment by running ``conda install pre-commit``.

2. Initialize pre-commit (one time only) ``pre-commit install``.

Thereafter your code will be linted by black and isort and checked against flake8 before you can commit.
If it fails by black or isort, just rerun and it should pass (black and isort will modify the files so should
pass after they are modified). If the flake8 test fails please see the error messages and fix them manually before
trying to commit again.

Improvements and fixes are always appreciated.

Before contributing, please read our `Code of Conduct <https://github.com/diffpy/diffpy.srreal/blob/main/CODE-OF-CONDUCT.rst>`_.

Contact
-------

For more information on diffpy.srreal please visit the project `web-page <https://diffpy.github.io/>`_ or email Simon Billinge at sb2896@columbia.edu.

Acknowledgements
----------------

``diffpy.srreal`` is built and maintained with `scikit-package <https://scikit-package.github.io/scikit-package/>`_.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "diffpy.srreal",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.14,>=3.11",
    "maintainer_email": "Simon Billinge <sb2896@columbia.edu>",
    "keywords": "PDF, BVS, atom, overlap, calculator, real-space",
    "author": null,
    "author_email": "Simon Billinge <sb2896@columbia.edu>",
    "download_url": "https://files.pythonhosted.org/packages/52/f9/73cce15c9714799712fe2ae1085066154d0214640b6c7bd55b5c5fd285da/diffpy_srreal-1.4.0.tar.gz",
    "platform": null,
    "description": "|Icon| |title|_\n===============\n\n.. |title| replace:: diffpy.srreal\n.. _title: https://diffpy.github.io/diffpy.srreal\n\n.. |Icon| image:: https://avatars.githubusercontent.com/diffpy\n        :target: https://diffpy.github.io/diffpy.srreal\n        :height: 100px\n\n|PyPI| |Forge| |PythonVersion| |PR|\n\n|CI| |Codecov| |Black| |Tracking|\n\n.. |Black| image:: https://img.shields.io/badge/code_style-black-black\n        :target: https://github.com/psf/black\n\n.. |CI| image:: https://github.com/diffpy/diffpy.srreal/actions/workflows/matrix-and-codecov-on-merge-to-main.yml/badge.svg\n        :target: https://github.com/diffpy/diffpy.srreal/actions/workflows/matrix-and-codecov-on-merge-to-main.yml\n\n.. |Codecov| image:: https://codecov.io/gh/diffpy/diffpy.srreal/branch/main/graph/badge.svg\n        :target: https://codecov.io/gh/diffpy/diffpy.srreal\n\n.. |Forge| image:: https://img.shields.io/conda/vn/conda-forge/diffpy.srreal\n        :target: https://anaconda.org/conda-forge/diffpy.srreal\n\n.. |PR| image:: https://img.shields.io/badge/PR-Welcome-29ab47ff\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/diffpy.srreal\n        :target: https://pypi.org/project/diffpy.srreal/\n\n.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/diffpy.srreal\n        :target: https://pypi.org/project/diffpy.srreal/\n\n.. |Tracking| image:: https://img.shields.io/badge/issue_tracking-github-blue\n        :target: https://github.com/diffpy/diffpy.srreal/issues\n\nCalculators for PDF, bond valence sum, and other quantities based on atom pair interaction.\n\nThe diffpy.srreal package provides calculators for atomic pair distribution\nfunction (PDF), bond valence sums (BVS), atom overlaps for a hard-sphere\nmodel, bond distances and directions up to specified maximum distance.   The\natomic structure models are represented with internal classes as non-periodic,\nperiodic or structures with space group symmetries.  The package provides\nimplicit adapters from diffpy.structure classes or from Crystal or Molecule\nobjects from pyobjcryst.  Adapters can be easily defined for any other\nstructure representations in Python allowing their direct use with the\ncalculators.  Calculators support two evaluation models - BASIC, which\nperforms a full pair-summation every time, and OPTIMIZED, which updates only\npair contributions that have changed since the last evaluation.  Calculations\ncan be split among parallel jobs using Python multiprocessing package or any\nother library that provides parallel map function.  PDF calculations can\nbe done in two modes - either as a real-space summation of peak profiles\n(PDFCalculator) or as a reciprocal-space Debye summation and Fourier\ntransform of the total scattering structure function (DebyePDFCalculator).\n\nThe diffpy.srreal package is a Python binding to the C++ library libdiffpy\n(https://github.com/diffpy/libdiffpy).  Calculators are created as\nobjects of a given calculator type and so multiple instances of the same\ncalculator type can exist with different configurations.  Calculators are\ncomposed of other objects that perform lower-level tasks, such as calculating\npeak profile or looking up atom scattering factors.  These objects can be\nre-assigned at runtime allowing to easily customize the calculation procedure.\nNew classes can be defined using object inheritance either in Python or in C++\nand used with the existing calculators; as an example, this allows to\ncalculate PDF with a user-defined profile function.  A new calculator class\ncan be also defined for any quantity that is obtained by iteration over atom\npairs, by defining only the function that processes atom-pair contributions.\n\nFor more information about the diffpy.srreal library, please consult our `online documentation <https://diffpy.github.io/diffpy.srreal>`_.\n\nCitation\n--------\n\nIf you use diffpy.srreal in a scientific publication, we would like you to cite this package as\n\n        diffpy.srreal Package, https://github.com/diffpy/diffpy.srreal\n\nInstallation\n------------\n\nThe preferred method is to use `Miniconda Python\n<https://docs.conda.io/projects/miniconda/en/latest/miniconda-install.html>`_\nand install from the \"conda-forge\" channel of Conda packages.\n\nTo add \"conda-forge\" to the conda channels, run the following in a terminal. ::\n\n        conda config --add channels conda-forge\n\nWe want to install our packages in a suitable conda environment.\nThe following creates and activates a new environment named ``diffpy.srreal_env`` ::\n\n        conda create -n diffpy.srreal_env diffpy.srreal\n        conda activate diffpy.srreal_env\n\nTo confirm that the installation was successful, type ::\n\n        python -c \"import diffpy.srreal; print(diffpy.srreal.__version__)\"\n\nThe output should print the latest version displayed on the badges above.\n\nIf the above does not work, you can use ``pip`` to download and install the latest release from\n`Python Package Index <https://pypi.python.org>`_.\nTo install using ``pip`` into your ``diffpy.srreal_env`` environment, type ::\n\n        pip install diffpy.srreal\n\nIf you prefer to install from sources, after installing the dependencies, obtain the source archive from\n`GitHub <https://github.com/diffpy/diffpy.srreal/>`_. Once installed, ``cd`` into your ``diffpy.srreal`` directory\nand run the following ::\n\n        pip install .\n\nGetting Started\n---------------\n\nYou may consult our `online documentation <https://diffpy.github.io/diffpy.srreal>`_ for tutorials and API references.\n\nSupport and Contribute\n----------------------\n\n`Diffpy user group <https://groups.google.com/g/diffpy-users>`_ is the discussion forum for general questions and discussions about the use of diffpy.srreal. Please join the diffpy.srreal users community by joining the Google group. The diffpy.srreal project welcomes your expertise and enthusiasm!\n\nIf you see a bug or want to request a feature, please `report it as an issue <https://github.com/diffpy/diffpy.srreal/issues>`_ and/or `submit a fix as a PR <https://github.com/diffpy/diffpy.srreal/pulls>`_. You can also post it to the `Diffpy user group <https://groups.google.com/g/diffpy-users>`_.\n\nFeel free to fork the project and contribute. To install diffpy.srreal\nin a development mode, with its sources being directly used by Python\nrather than copied to a package directory, use the following in the root\ndirectory ::\n\n        pip install -e .\n\nTo ensure code quality and to prevent accidental commits into the default branch, please set up the use of our pre-commit\nhooks.\n\n1. Install pre-commit in your working environment by running ``conda install pre-commit``.\n\n2. Initialize pre-commit (one time only) ``pre-commit install``.\n\nThereafter your code will be linted by black and isort and checked against flake8 before you can commit.\nIf it fails by black or isort, just rerun and it should pass (black and isort will modify the files so should\npass after they are modified). If the flake8 test fails please see the error messages and fix them manually before\ntrying to commit again.\n\nImprovements and fixes are always appreciated.\n\nBefore contributing, please read our `Code of Conduct <https://github.com/diffpy/diffpy.srreal/blob/main/CODE-OF-CONDUCT.rst>`_.\n\nContact\n-------\n\nFor more information on diffpy.srreal please visit the project `web-page <https://diffpy.github.io/>`_ or email Simon Billinge at sb2896@columbia.edu.\n\nAcknowledgements\n----------------\n\n``diffpy.srreal`` is built and maintained with `scikit-package <https://scikit-package.github.io/scikit-package/>`_.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Calculators for PDF, bond valence sum, and other quantities based on atom pair interaction.",
    "version": "1.4.0",
    "project_urls": {
        "Homepage": "https://github.com/diffpy/diffpy.srreal/",
        "Issues": "https://github.com/diffpy/diffpy.srreal/issues/"
    },
    "split_keywords": [
        "pdf",
        " bvs",
        " atom",
        " overlap",
        " calculator",
        " real-space"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d873e9cf83d0106d089a771685291b4d5cab656a3dfa214f8a10a7d5533c7385",
                "md5": "4cf122f01794f0aaf421c2d10b7ba584",
                "sha256": "acf6853147cbeea52e3027bade63bb930c875419422fcc39fb247b036c1889e5"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp311-cp311-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cf122f01794f0aaf421c2d10b7ba584",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.11",
            "size": 1050995,
            "upload_time": "2025-08-02T01:41:14",
            "upload_time_iso_8601": "2025-08-02T01:41:14.645178Z",
            "url": "https://files.pythonhosted.org/packages/d8/73/e9cf83d0106d089a771685291b4d5cab656a3dfa214f8a10a7d5533c7385/diffpy_srreal-1.4.0-cp311-cp311-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a6d6e32d7234dee6be05fb459212f74280a660050b03ad408419f1eca71fe5f",
                "md5": "523d6fbf1fd507eb472b97c224cb92d7",
                "sha256": "fb0ce39287ee2fbae44fcbfe9227d8e83fcd7306859d860c55905d5a09747e00"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "523d6fbf1fd507eb472b97c224cb92d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.11",
            "size": 985642,
            "upload_time": "2025-08-02T01:41:16",
            "upload_time_iso_8601": "2025-08-02T01:41:16.549163Z",
            "url": "https://files.pythonhosted.org/packages/8a/6d/6e32d7234dee6be05fb459212f74280a660050b03ad408419f1eca71fe5f/diffpy_srreal-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "271b6757ebcd1287a3761683ef1b3f523074058123d6610d792af7fd376e87c0",
                "md5": "96645c9879fa39c2c627d01913e8f185",
                "sha256": "74551dad6eb092bd30e0b9229ed228961a37d9833d930e1dafa9f62461e59f7f"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp311-cp311-manylinux_2_39_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96645c9879fa39c2c627d01913e8f185",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.11",
            "size": 1558967,
            "upload_time": "2025-08-02T01:41:18",
            "upload_time_iso_8601": "2025-08-02T01:41:18.162369Z",
            "url": "https://files.pythonhosted.org/packages/27/1b/6757ebcd1287a3761683ef1b3f523074058123d6610d792af7fd376e87c0/diffpy_srreal-1.4.0-cp311-cp311-manylinux_2_39_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ab96d636ecff40cf3d17dc69b2f9298522ad11220ddb4c89c0b1a689f11ca50",
                "md5": "3edff8a58402444c46c17fe32a9417f3",
                "sha256": "435d622dc12a232a69abf764f556c28d19112c4ec3c7cd367f860aaa8c55cbd8"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3edff8a58402444c46c17fe32a9417f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.11",
            "size": 1855386,
            "upload_time": "2025-08-02T01:41:19",
            "upload_time_iso_8601": "2025-08-02T01:41:19.587033Z",
            "url": "https://files.pythonhosted.org/packages/3a/b9/6d636ecff40cf3d17dc69b2f9298522ad11220ddb4c89c0b1a689f11ca50/diffpy_srreal-1.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5544bf07a8e23f535d51e0759df7e704cb18435b5922c5d16efc6d2fbafb763",
                "md5": "9a1d2db38e4079873312bfc75d9e80f4",
                "sha256": "cca7e9b90bf875846d5a0bbdd3bf5a86783f25ddee768f12735dcda1f1d8befa"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a1d2db38e4079873312bfc75d9e80f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.11",
            "size": 1059306,
            "upload_time": "2025-08-02T01:41:20",
            "upload_time_iso_8601": "2025-08-02T01:41:20.780703Z",
            "url": "https://files.pythonhosted.org/packages/c5/54/4bf07a8e23f535d51e0759df7e704cb18435b5922c5d16efc6d2fbafb763/diffpy_srreal-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40a740c5fec3c932c20da6af45272bfce27f6e5589837bb211c2189363eb5a0c",
                "md5": "2526983a84c6a5c1a41702c6c8bc569a",
                "sha256": "93189334ae7806e1debe796254099ac825dd56c7c61000cc34340d0b44e1364d"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2526983a84c6a5c1a41702c6c8bc569a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.11",
            "size": 990408,
            "upload_time": "2025-08-02T01:41:22",
            "upload_time_iso_8601": "2025-08-02T01:41:22.204032Z",
            "url": "https://files.pythonhosted.org/packages/40/a7/40c5fec3c932c20da6af45272bfce27f6e5589837bb211c2189363eb5a0c/diffpy_srreal-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "288033dbd1c51b9bc84d7d41cd99ac9616d60715ac4fc6b497223701a52e8c38",
                "md5": "d9c1aec0165b047e0b00a06cf5b909f5",
                "sha256": "fd8e1c6b56353348cf99ece2982b8773c8310b25cf27175a218bec6268c599b7"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp312-cp312-manylinux_2_39_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9c1aec0165b047e0b00a06cf5b909f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.11",
            "size": 1556154,
            "upload_time": "2025-08-02T01:41:23",
            "upload_time_iso_8601": "2025-08-02T01:41:23.627128Z",
            "url": "https://files.pythonhosted.org/packages/28/80/33dbd1c51b9bc84d7d41cd99ac9616d60715ac4fc6b497223701a52e8c38/diffpy_srreal-1.4.0-cp312-cp312-manylinux_2_39_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9051514b8bd16bd29e76960a9a5c9a18892135cca53e6cc6ac0a3d3ec679104f",
                "md5": "628211a446c9b214d575ed654b20009e",
                "sha256": "30ee3f7bfe5712ce7116c8e23f2a06fbba0cbcb7366ffab2cc596500e1df9b2b"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "628211a446c9b214d575ed654b20009e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.11",
            "size": 1858311,
            "upload_time": "2025-08-02T01:41:24",
            "upload_time_iso_8601": "2025-08-02T01:41:24.696841Z",
            "url": "https://files.pythonhosted.org/packages/90/51/514b8bd16bd29e76960a9a5c9a18892135cca53e6cc6ac0a3d3ec679104f/diffpy_srreal-1.4.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1a11c099ffdc0fbe9903eafa8ed87ae704f9fef8869a70d9311de6e653a9974",
                "md5": "cf1da32fd446d57daba45c6dae86993f",
                "sha256": "af63ff747ad6992800ef8a9f612152e8d07468fedee6b13605d1e5bceaf79998"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf1da32fd446d57daba45c6dae86993f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.11",
            "size": 1059310,
            "upload_time": "2025-08-02T01:41:25",
            "upload_time_iso_8601": "2025-08-02T01:41:25.825810Z",
            "url": "https://files.pythonhosted.org/packages/c1/a1/1c099ffdc0fbe9903eafa8ed87ae704f9fef8869a70d9311de6e653a9974/diffpy_srreal-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cb73b4c067ec786f39ea274c45ce8a8d53cdfd25d5415eb77ff54132eee1933",
                "md5": "5a61b64c250c48848c09cc02bfd637f9",
                "sha256": "efdfd2b70d65d53c8c4bafde186aa1f9402574b45e8cf6b2a29b0caa35a692c5"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5a61b64c250c48848c09cc02bfd637f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.11",
            "size": 990411,
            "upload_time": "2025-08-02T01:41:26",
            "upload_time_iso_8601": "2025-08-02T01:41:26.898337Z",
            "url": "https://files.pythonhosted.org/packages/8c/b7/3b4c067ec786f39ea274c45ce8a8d53cdfd25d5415eb77ff54132eee1933/diffpy_srreal-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c2c4aacd85903745a52b4a17a43c0eadb67bd727a612fa0067c3c6388497cdb",
                "md5": "fcb5ae1338ee7846f96e3ea77dff05dd",
                "sha256": "77f6af3c407bd3ed73d4106cfe5ef9feb8ebcd9ccdf995be12297af3422cb420"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp313-cp313-manylinux_2_39_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fcb5ae1338ee7846f96e3ea77dff05dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.11",
            "size": 1556159,
            "upload_time": "2025-08-02T01:41:28",
            "upload_time_iso_8601": "2025-08-02T01:41:28.230118Z",
            "url": "https://files.pythonhosted.org/packages/3c/2c/4aacd85903745a52b4a17a43c0eadb67bd727a612fa0067c3c6388497cdb/diffpy_srreal-1.4.0-cp313-cp313-manylinux_2_39_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b47b05a15384cb19ead55115b183cc18e863a58e420aacc3d3c056374cc6c05",
                "md5": "e7cdaf531c177815ba3d2409308d04eb",
                "sha256": "1d3e954130a13934d5c499f0c800e368501f1190c8506e6d21104fea6c28b997"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e7cdaf531c177815ba3d2409308d04eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.11",
            "size": 1858423,
            "upload_time": "2025-08-02T01:41:29",
            "upload_time_iso_8601": "2025-08-02T01:41:29.398146Z",
            "url": "https://files.pythonhosted.org/packages/8b/47/b05a15384cb19ead55115b183cc18e863a58e420aacc3d3c056374cc6c05/diffpy_srreal-1.4.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52f973cce15c9714799712fe2ae1085066154d0214640b6c7bd55b5c5fd285da",
                "md5": "e20831330273b7b67ec98dfa04e1a25d",
                "sha256": "34988d5e8e1bf321523de989a48fcac99cba5ff205de26c699e396b9c5a95365"
            },
            "downloads": -1,
            "filename": "diffpy_srreal-1.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e20831330273b7b67ec98dfa04e1a25d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.14,>=3.11",
            "size": 138038,
            "upload_time": "2025-08-02T01:41:30",
            "upload_time_iso_8601": "2025-08-02T01:41:30.970253Z",
            "url": "https://files.pythonhosted.org/packages/52/f9/73cce15c9714799712fe2ae1085066154d0214640b6c7bd55b5c5fd285da/diffpy_srreal-1.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-02 01:41:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "diffpy",
    "github_project": "diffpy.srreal",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "diffpy.srreal"
}
        
Elapsed time: 1.49621s