fastddm


Namefastddm JSON
Version 0.3.9 PyPI version JSON
download
home_pagehttps://github.com/somexlab/fastddm
SummaryA Python/C++ library for the analysis of Differential Dynamic Microscopy experiments
upload_time2024-04-04 13:38:34
maintainerNone
docs_urlNone
authorEnrico Lattuada, Fabian Krautgasser, Roberto Cerbino
requires_python>=3.8
licenseGNU GPL 3.0
keywords cuda differential-dynamic-microscopy digital-fourier-microscopy gpu image-analysis microscopy python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![FastDDM](docs/source/fastddm-logo-horizontal.svg)

![Python](https://img.shields.io/badge/python-3.8%20%7C%203.12-blue)
[![GitHub Actions](https://github.com/somexlab/fastddm/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/somexlab/fastddm/actions/workflows/test.yml)
[![PyPI Version](https://badge.fury.io/py/fastddm.svg)](https://pypi.org/project/fastddm/)
[![Read the Docs](https://readthedocs.org/projects/fastddm/badge/?version=latest)](https://fastddm.readthedocs.io/en/latest/?badge=latest)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE)

**FastDDM** is a Python package for the analysis of microscopy image sequences using Differential Dynamic Microscopy on CPU and GPU.
The features implemented are targeted at the experimental soft matter research community dealing with inert and active/biological samples.

## Resources
- [Documentation](https://fastddm.readthedocs.io/):
  Python API description, installation, examples, and usage information.
- [Example notebooks](https://github.com/somexlab/fastddm-tutorials):
  Jupyter notebooks with practical examples.

## Example scripts
These examples demonstrate some of the Python API.

Calculation of the image structure function and its azimuthal average:

```python
import fastddm as fddm

file_names = [...]  # define here your list of image file names 
images = fddm.read_images(file_names)

pixel_size = 0.3    # um
frame_rate = 50     # frames per second
    
# compute image structure function and set experimental parameters
dqt = fddm.ddm(img_seq, range(1, len(img_seq)))
dqt.pixel_size = pixel_size
dqt.set_frame_rate(frame_rate)

# compute the azimuthal average
aa = fddm.azimuthal_average(dqt, bins=dqt.shape[-1] - 1, range=(0.0, dqt.ky[-1]))
```

## Contributing to FastDDM
Contributions are welcome via [pull requests](https://github.com/somexlab/fastddm/pulls) after
agreeing to the [Contributors' Agreement](https://github.com/somexlab/fastddm/CONTRIBUTING.rst).
Please, refer to the [Developers'](https://fastddm.readthedocs.io/en/latest/contributing.html) section in the documentation.

Please, report bugs and suggest features via the [issue tracker](https://github.com/somexlab/fastddm/issues).

## Citing FastDDM
Please, cite this publication in every work that uses FastDDM:

    E. Lattuada, F. Krautgasser, F. Giavazzi, and R. Cerbino.
    The Hitchhiker’s Guide to Differential Dynamic Microscopy.
    (In preparation.)

## License
FastDDM is available under the [GNU GPL-3.0 license](LICENSE).

## Acknowledgements
* The [fftw-3.3.10](https://www.fftw.org/) and [pybind11 2.10.0](https://github.com/pybind/pybind11) libraries are included in the source tree.
* This project was funded by the Austrian Science Fund (FWF), Grant Number M 3250-N.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/somexlab/fastddm",
    "name": "fastddm",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Enrico Lattuada <lattuada.enrico@gmail.com>",
    "keywords": "cuda, differential-dynamic-microscopy, digital-fourier-microscopy, gpu, image-analysis, microscopy, python",
    "author": "Enrico Lattuada, Fabian Krautgasser, Roberto Cerbino",
    "author_email": "cerbino@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/71/52/71a870b39013e44a8d496af69f1772123819ade9ed2df945a886057c171f/fastddm-0.3.9.tar.gz",
    "platform": null,
    "description": "![FastDDM](docs/source/fastddm-logo-horizontal.svg)\n\n![Python](https://img.shields.io/badge/python-3.8%20%7C%203.12-blue)\n[![GitHub Actions](https://github.com/somexlab/fastddm/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/somexlab/fastddm/actions/workflows/test.yml)\n[![PyPI Version](https://badge.fury.io/py/fastddm.svg)](https://pypi.org/project/fastddm/)\n[![Read the Docs](https://readthedocs.org/projects/fastddm/badge/?version=latest)](https://fastddm.readthedocs.io/en/latest/?badge=latest)\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE)\n\n**FastDDM** is a Python package for the analysis of microscopy image sequences using Differential Dynamic Microscopy on CPU and GPU.\nThe features implemented are targeted at the experimental soft matter research community dealing with inert and active/biological samples.\n\n## Resources\n- [Documentation](https://fastddm.readthedocs.io/):\n  Python API description, installation, examples, and usage information.\n- [Example notebooks](https://github.com/somexlab/fastddm-tutorials):\n  Jupyter notebooks with practical examples.\n\n## Example scripts\nThese examples demonstrate some of the Python API.\n\nCalculation of the image structure function and its azimuthal average:\n\n```python\nimport fastddm as fddm\n\nfile_names = [...]  # define here your list of image file names \nimages = fddm.read_images(file_names)\n\npixel_size = 0.3    # um\nframe_rate = 50     # frames per second\n    \n# compute image structure function and set experimental parameters\ndqt = fddm.ddm(img_seq, range(1, len(img_seq)))\ndqt.pixel_size = pixel_size\ndqt.set_frame_rate(frame_rate)\n\n# compute the azimuthal average\naa = fddm.azimuthal_average(dqt, bins=dqt.shape[-1] - 1, range=(0.0, dqt.ky[-1]))\n```\n\n## Contributing to FastDDM\nContributions are welcome via [pull requests](https://github.com/somexlab/fastddm/pulls) after\nagreeing to the [Contributors' Agreement](https://github.com/somexlab/fastddm/CONTRIBUTING.rst).\nPlease, refer to the [Developers'](https://fastddm.readthedocs.io/en/latest/contributing.html) section in the documentation.\n\nPlease, report bugs and suggest features via the [issue tracker](https://github.com/somexlab/fastddm/issues).\n\n## Citing FastDDM\nPlease, cite this publication in every work that uses FastDDM:\n\n    E. Lattuada, F. Krautgasser, F. Giavazzi, and R. Cerbino.\n    The Hitchhiker\u2019s Guide to Differential Dynamic Microscopy.\n    (In preparation.)\n\n## License\nFastDDM is available under the [GNU GPL-3.0 license](LICENSE).\n\n## Acknowledgements\n* The [fftw-3.3.10](https://www.fftw.org/) and [pybind11 2.10.0](https://github.com/pybind/pybind11) libraries are included in the source tree.\n* This project was funded by the Austrian Science Fund (FWF), Grant Number M 3250-N.\n",
    "bugtrack_url": null,
    "license": "GNU GPL 3.0",
    "summary": "A Python/C++ library for the analysis of Differential Dynamic Microscopy experiments",
    "version": "0.3.9",
    "project_urls": {
        "Changelog": "https://github.com/somexlab/fastddm/blob/main/CHANGELOG.rst",
        "Documentation": "https://fastddm.readthedocs.io",
        "Homepage": "https://github.com/somexlab/fastddm",
        "Issues": "https://github.com/somexlab/fastddm/issues",
        "Source": "https://github.com/somexlab/fastddm"
    },
    "split_keywords": [
        "cuda",
        " differential-dynamic-microscopy",
        " digital-fourier-microscopy",
        " gpu",
        " image-analysis",
        " microscopy",
        " python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f84e05f2c09a0c82169306a9f1ee95ff5e51022ba04e70273067bd1e4c827afe",
                "md5": "8dbc0840b314d4c4322b28712205f656",
                "sha256": "131b287fc004a72a7192c62452b34d5214efa8671c3186b08597edae06933bb6"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8dbc0840b314d4c4322b28712205f656",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1574865,
            "upload_time": "2024-04-04T13:37:55",
            "upload_time_iso_8601": "2024-04-04T13:37:55.684742Z",
            "url": "https://files.pythonhosted.org/packages/f8/4e/05f2c09a0c82169306a9f1ee95ff5e51022ba04e70273067bd1e4c827afe/fastddm-0.3.9-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ca839b3be8d121ab8ed8b8bb65b101ccb59292d0c2cf9e3884a7c120f54066a",
                "md5": "ee6a86f7aeabcc4a5bc1bf2c25383856",
                "sha256": "5963195a86de0979b94cc8afedf000789c376759460e465b7328347a7992e80d"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ee6a86f7aeabcc4a5bc1bf2c25383856",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1385689,
            "upload_time": "2024-04-04T13:37:57",
            "upload_time_iso_8601": "2024-04-04T13:37:57.736281Z",
            "url": "https://files.pythonhosted.org/packages/2c/a8/39b3be8d121ab8ed8b8bb65b101ccb59292d0c2cf9e3884a7c120f54066a/fastddm-0.3.9-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ab71c8211f4e1e60fe925fe9d9b0d4c27aeefc630e548a4385f89ec1b586853",
                "md5": "c7441f98a5dc8e39e64726b3f18bf3da",
                "sha256": "8f7d95e053221a4cd91f411fe15b53e466d16bf374d6e34e9d522f80a30c9bca"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c7441f98a5dc8e39e64726b3f18bf3da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1898088,
            "upload_time": "2024-04-04T13:37:59",
            "upload_time_iso_8601": "2024-04-04T13:37:59.665341Z",
            "url": "https://files.pythonhosted.org/packages/6a/b7/1c8211f4e1e60fe925fe9d9b0d4c27aeefc630e548a4385f89ec1b586853/fastddm-0.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f295357ab423c9d130d021800e38aff1a1e6719570232393450e12471f2ce90b",
                "md5": "d49a913a928e1936796e01618a9ed593",
                "sha256": "0a165ff65db7747c400ab4369b51cd75bb61eb75b4a7df40cade965a764753dc"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d49a913a928e1936796e01618a9ed593",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 648934,
            "upload_time": "2024-04-04T13:38:01",
            "upload_time_iso_8601": "2024-04-04T13:38:01.177182Z",
            "url": "https://files.pythonhosted.org/packages/f2/95/357ab423c9d130d021800e38aff1a1e6719570232393450e12471f2ce90b/fastddm-0.3.9-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dfaed4293d0d445f03730163aecad2e3795f0e057eeefcbfc18c85d0c196132",
                "md5": "7599d51a205c73eeb33d0f090b0df726",
                "sha256": "e5ef89b3abb9264d2c66a340620ef7f012d13824b8d1465375ed7cc4d5af85bf"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7599d51a205c73eeb33d0f090b0df726",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1577479,
            "upload_time": "2024-04-04T13:38:02",
            "upload_time_iso_8601": "2024-04-04T13:38:02.644506Z",
            "url": "https://files.pythonhosted.org/packages/8d/fa/ed4293d0d445f03730163aecad2e3795f0e057eeefcbfc18c85d0c196132/fastddm-0.3.9-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bbd2a31b0bd28e85d3fa39ad2a18fcddafc35a6ee599b0c2c9f390abc10ab1d",
                "md5": "ea0ae2702518623a211a4d2c42ca9e8a",
                "sha256": "661aa84d9155920b28a5f2fa6f51483beef022aee459ebca4390259d8b5fa625"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ea0ae2702518623a211a4d2c42ca9e8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1388089,
            "upload_time": "2024-04-04T13:38:04",
            "upload_time_iso_8601": "2024-04-04T13:38:04.662125Z",
            "url": "https://files.pythonhosted.org/packages/0b/bd/2a31b0bd28e85d3fa39ad2a18fcddafc35a6ee599b0c2c9f390abc10ab1d/fastddm-0.3.9-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "214c3595fd2458ed79fe1209d780521d932abddd5aedb19c7903ba9b8aa017ad",
                "md5": "5bc965239cd99726d0053b602b9651b2",
                "sha256": "e12aa667d9d14ec89d9ef035cd98faff46341d5d109806efc6472404e1c5e862"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bc965239cd99726d0053b602b9651b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1901432,
            "upload_time": "2024-04-04T13:38:06",
            "upload_time_iso_8601": "2024-04-04T13:38:06.913614Z",
            "url": "https://files.pythonhosted.org/packages/21/4c/3595fd2458ed79fe1209d780521d932abddd5aedb19c7903ba9b8aa017ad/fastddm-0.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3efaea77b3e7e55321cf247c0d6d809ebe62317546d399c5de06346b00a3f9fc",
                "md5": "a7442ff2ed99be20e98206c82862e985",
                "sha256": "bf452ad088e188818726e87b2765c181314b1bbeef0bd245f7af73a3e30cb9bd"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a7442ff2ed99be20e98206c82862e985",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 651363,
            "upload_time": "2024-04-04T13:38:09",
            "upload_time_iso_8601": "2024-04-04T13:38:09.145985Z",
            "url": "https://files.pythonhosted.org/packages/3e/fa/ea77b3e7e55321cf247c0d6d809ebe62317546d399c5de06346b00a3f9fc/fastddm-0.3.9-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54f12f3219bfbeb9428ec5969ac379f289845fb84006545023b9f0a83ef9e220",
                "md5": "22ac179cdee7f76da8071a2c3c76edd0",
                "sha256": "6a5a62343a8b42708153f05cc0761199a48ed1bba9bddea9330e7a558a712cab"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22ac179cdee7f76da8071a2c3c76edd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1576262,
            "upload_time": "2024-04-04T13:38:10",
            "upload_time_iso_8601": "2024-04-04T13:38:10.906569Z",
            "url": "https://files.pythonhosted.org/packages/54/f1/2f3219bfbeb9428ec5969ac379f289845fb84006545023b9f0a83ef9e220/fastddm-0.3.9-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7172e2bd321159f32c215e83339aba4284ac03773bfac6193b3c659f5cd8c6d4",
                "md5": "29d21a523ca1a4fd28dc0b2b077b7447",
                "sha256": "3f264cea4d56c45ddbee9690a7d106fe4c23b6f86900919163ef8b33860f4616"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "29d21a523ca1a4fd28dc0b2b077b7447",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1385832,
            "upload_time": "2024-04-04T13:38:13",
            "upload_time_iso_8601": "2024-04-04T13:38:13.102136Z",
            "url": "https://files.pythonhosted.org/packages/71/72/e2bd321159f32c215e83339aba4284ac03773bfac6193b3c659f5cd8c6d4/fastddm-0.3.9-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69e01bb9925026051c00959490099021b53fe2315be03a2fcce4df79198f400c",
                "md5": "f9bd13d311e485489dbb23625c46d9bf",
                "sha256": "d59ede1ef52a16722e3e65f023a55234d399d46e028a5d593e3e9dc245cbc47d"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9bd13d311e485489dbb23625c46d9bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1903296,
            "upload_time": "2024-04-04T13:38:14",
            "upload_time_iso_8601": "2024-04-04T13:38:14.895474Z",
            "url": "https://files.pythonhosted.org/packages/69/e0/1bb9925026051c00959490099021b53fe2315be03a2fcce4df79198f400c/fastddm-0.3.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eac9fb09a76d58b9f09869faea3d0bdf95bac600079e34130fab0fe656ef50ff",
                "md5": "70312b9876296a57876b4df29a8a3b51",
                "sha256": "8705bab3f7fc17803a6c20dbbe89f8a72d2de28a57725e257d99e8fbd5094ac5"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "70312b9876296a57876b4df29a8a3b51",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 651531,
            "upload_time": "2024-04-04T13:38:16",
            "upload_time_iso_8601": "2024-04-04T13:38:16.458241Z",
            "url": "https://files.pythonhosted.org/packages/ea/c9/fb09a76d58b9f09869faea3d0bdf95bac600079e34130fab0fe656ef50ff/fastddm-0.3.9-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da110421343491a1f1cf9f78cc89c9d9d4ca16549d16d0fdec72026732b7b36d",
                "md5": "bf99176c4a2d62d460bfc5b4d09e72f5",
                "sha256": "30f98b808d3aae9cca33879890adaddafbc1b84d6bc5a5322f769ed0ed9facf9"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf99176c4a2d62d460bfc5b4d09e72f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1574567,
            "upload_time": "2024-04-04T13:38:18",
            "upload_time_iso_8601": "2024-04-04T13:38:18.581013Z",
            "url": "https://files.pythonhosted.org/packages/da/11/0421343491a1f1cf9f78cc89c9d9d4ca16549d16d0fdec72026732b7b36d/fastddm-0.3.9-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6544a9c05fa39b67ab494eaaa7b29fdc190b47a70125a6a2ece38d663860feb1",
                "md5": "0bc90ac836991fc77797df19b6f4bb92",
                "sha256": "0c87eaff5d0f1752b58648e842982e66313cb04601e0443e468fa76664afa7c8"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0bc90ac836991fc77797df19b6f4bb92",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1385473,
            "upload_time": "2024-04-04T13:38:20",
            "upload_time_iso_8601": "2024-04-04T13:38:20.634483Z",
            "url": "https://files.pythonhosted.org/packages/65/44/a9c05fa39b67ab494eaaa7b29fdc190b47a70125a6a2ece38d663860feb1/fastddm-0.3.9-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8afccb4fbb0cf1fe6986d42d4cfe25b5ef756e7bd46c12cb02977c64680ad563",
                "md5": "2a1555b151c436485fe274b2c9c470a5",
                "sha256": "159fae8ca567e2f4216e3e998ce4324a79cba0e3d47875ed6092eac28681928a"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a1555b151c436485fe274b2c9c470a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1898137,
            "upload_time": "2024-04-04T13:38:23",
            "upload_time_iso_8601": "2024-04-04T13:38:23.179637Z",
            "url": "https://files.pythonhosted.org/packages/8a/fc/cb4fbb0cf1fe6986d42d4cfe25b5ef756e7bd46c12cb02977c64680ad563/fastddm-0.3.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9970d7cbf44cba09848d18f04f01da591f93c448d793f09bd06258880bf1f148",
                "md5": "a14633cf54b1ef2a12958816efbb45d6",
                "sha256": "f7022ebdd923689a6f3046106336bc3eb9202e3f74a844fc457a76ee054fa390"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a14633cf54b1ef2a12958816efbb45d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 649152,
            "upload_time": "2024-04-04T13:38:25",
            "upload_time_iso_8601": "2024-04-04T13:38:25.063975Z",
            "url": "https://files.pythonhosted.org/packages/99/70/d7cbf44cba09848d18f04f01da591f93c448d793f09bd06258880bf1f148/fastddm-0.3.9-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e5d7359eca34374228570db9a84cd74da1698592f0fe945010651c739efe775",
                "md5": "6a4cccf5dc938fc518b673b959b40299",
                "sha256": "8b97647fd4b63e83a378e4d05c757ad0ed3fa814d054ad12e98ac548bee315a5"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a4cccf5dc938fc518b673b959b40299",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1575074,
            "upload_time": "2024-04-04T13:38:26",
            "upload_time_iso_8601": "2024-04-04T13:38:26.402751Z",
            "url": "https://files.pythonhosted.org/packages/7e/5d/7359eca34374228570db9a84cd74da1698592f0fe945010651c739efe775/fastddm-0.3.9-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c09454dde423bdf2f319e7b96fcdede39d33082e9aeec42abbf141a540e2a8f",
                "md5": "99312c020b702da17c8b31eea1043ef6",
                "sha256": "b4f120403fd452c50b9fa90219ffd234c7cf840f3a3884d59b6b021a56b13c1c"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "99312c020b702da17c8b31eea1043ef6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1385983,
            "upload_time": "2024-04-04T13:38:27",
            "upload_time_iso_8601": "2024-04-04T13:38:27.765064Z",
            "url": "https://files.pythonhosted.org/packages/6c/09/454dde423bdf2f319e7b96fcdede39d33082e9aeec42abbf141a540e2a8f/fastddm-0.3.9-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "192af5254c1ede9537623d91ae9e5e034b6da4bf8a172fa7d097383dde297992",
                "md5": "6d66e24fba9259e9e83770e804bbde84",
                "sha256": "4b263bc1a2e14be5a28f557f953ee3c2ae732c73d8e64b9904bf2b2290ef4129"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d66e24fba9259e9e83770e804bbde84",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1898682,
            "upload_time": "2024-04-04T13:38:29",
            "upload_time_iso_8601": "2024-04-04T13:38:29.546573Z",
            "url": "https://files.pythonhosted.org/packages/19/2a/f5254c1ede9537623d91ae9e5e034b6da4bf8a172fa7d097383dde297992/fastddm-0.3.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51cb3821dbf7975a0905b7d25343ddd9e1efc1a77a292b8295180bf640c4f4fa",
                "md5": "f17aed3d28c64aca31ace28ac37a6091",
                "sha256": "502a8288ab95929baa2afcec934dbf617838fc749a6f5ad2dd029fef0906a0b8"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f17aed3d28c64aca31ace28ac37a6091",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 649310,
            "upload_time": "2024-04-04T13:38:31",
            "upload_time_iso_8601": "2024-04-04T13:38:31.683856Z",
            "url": "https://files.pythonhosted.org/packages/51/cb/3821dbf7975a0905b7d25343ddd9e1efc1a77a292b8295180bf640c4f4fa/fastddm-0.3.9-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "715271a870b39013e44a8d496af69f1772123819ade9ed2df945a886057c171f",
                "md5": "3ac7173dec6dda3b7b2fe7dd1ae4dbb6",
                "sha256": "9c9930356459f262a1a8bc2a697fe9a3d82672149706f3c288ebe1350407c58a"
            },
            "downloads": -1,
            "filename": "fastddm-0.3.9.tar.gz",
            "has_sig": false,
            "md5_digest": "3ac7173dec6dda3b7b2fe7dd1ae4dbb6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 42566174,
            "upload_time": "2024-04-04T13:38:34",
            "upload_time_iso_8601": "2024-04-04T13:38:34.916592Z",
            "url": "https://files.pythonhosted.org/packages/71/52/71a870b39013e44a8d496af69f1772123819ade9ed2df945a886057c171f/fastddm-0.3.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-04 13:38:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "somexlab",
    "github_project": "fastddm",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fastddm"
}
        
Elapsed time: 0.21719s