PyMieSim


NamePyMieSim JSON
Version 3.6.3 PyPI version JSON
download
home_pageNone
SummaryA package for light scattering computation.
upload_time2025-07-19 23:40:07
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT License Copyright (c) 2020 Martin Poinsinet de Sivry-Houle Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords mie scattering backscatter sphere cylinder nanoparticle phase function efficiency rayleigh backscattering
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |logo|

.. list-table::
   :widths: 10 25 25 25
   :header-rows: 0

   * - Meta
     - |python|
     - |docs|
     - |zenodo|
   * - Testing
     - |ci/cd|
     - |coverage|
     - |colab|
   * - PyPI
     - |PyPI|
     - |PyPI_download|
     -
   * - Anaconda
     - |anaconda|
     - |anaconda_download|
     - |anaconda_date|

PyMieSim
========

**PyMieSim** is an open-source Python package for fast and flexible Mie
scattering simulations.  It supports spherical, cylindrical and core--shell
particles and provides helper classes for custom sources and detectors.
The project targets both quick single-scatterer studies and large parametric
experiments.

Features
--------
- Solvers for spheres, cylinders and core--shell geometries.
- Built-in models for plane wave and Gaussian sources.
- Multiple detector types including photodiodes and coherent modes.
- Simple data analysis with pandas DataFrame outputs.

Installation
------------
PyMieSim is available on PyPI and Anaconda.  Install it with:

.. code-block:: bash

   pip install PyMieSim
   conda install PyMieSim

See the `online documentation <https://pymiesim.readthedocs.io/>`_ for detailed
usage and additional examples.

Quick example
-------------
Below is a short example computing the scattering efficiency of a sphere.

.. code-block:: python

   import numpy as np
   from PyMieSim.experiment.scatterer import Sphere
   from PyMieSim.experiment.source import Gaussian
   from PyMieSim.experiment import Setup
   from PyMieSim.units import nanometer, degree, watt, AU, RIU

   source = Gaussian(
       wavelength=np.linspace(400, 1000, 500) * nanometer,
       polarization=0 * degree,
       optical_power=1e-3 * watt,
       NA=0.2 * AU,
   )

   scatterer = Sphere(
       diameter=[200] * nanometer,
       property=[4] * RIU,
       medium_property=1 * RIU,
       source=source,
   )

   experiment = Setup(scatterer=scatterer, source=source)
   df = experiment.get("Qsca")
   df.plot_data(x="source:wavelength")

Building from source
--------------------
For development or manual compilation, clone the repository and run:

.. code-block:: bash

   git submodule update --init
   mkdir build && cd build
   cmake ../ -G"Unix Makefiles"
   sudo make install
   cd ..
   python -m pip install .

Testing
-------
Run the unit tests with:

.. code-block:: bash

   pip install PyMieSim[testing]
   pytest

Citing PyMieSim
---------------
If you use PyMieSim in academic work, please cite:

.. code-block:: none

   @article{PoinsinetdeSivry-Houle:23,
       author = {Martin Poinsinet de Sivry-Houle and Nicolas Godbout and Caroline Boudoux},
       journal = {Opt. Continuum},
       title = {PyMieSim: an open-source library for fast and flexible far-field Mie scattering simulations},
       volume = {2},
       number = {3},
       pages = {520--534},
       year = {2023},
       doi = {10.1364/OPTCON.473102},
   }

Contact
-------
For questions or contributions, contact `martin.poinsinet.de.sivry@gmail.com <mailto:martin.poinsinet.de.sivry@gmail.com>`_.

.. |logo| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/logo.png
    :alt: PyOptik logo
.. |python| image:: https://img.shields.io/pypi/pyversions/pymiesim.svg
    :alt: Python
    :target: https://www.python.org/
.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5593704.svg
    :alt: Scientific article
    :target: https://doi.org/10.5281/zenodo.4556074
.. |colab| image:: https://colab.research.google.com/assets/colab-badge.svg
    :alt: Google Colab
    :target: https://colab.research.google.com/github/MartinPdeS/PyMieSim/blob/master/notebook.ipynb
.. |docs| image:: https://github.com/martinpdes/pymiesim/actions/workflows/deploy_documentation.yml/badge.svg
    :target: https://martinpdes.github.io/PyMieSim/
    :alt: Documentation Status
.. |PyPI| image:: https://badge.fury.io/py/PyMieSim.svg
    :alt: PyPI version
    :target: https://badge.fury.io/py/PyMieSim
.. |PyPI_download| image:: https://img.shields.io/pypi/dm/PyMieSim?style=plastic&label=PyPI%20downloads&labelColor=hex&color=hex
    :alt: PyPI downloads
    :target: https://pypistats.org/packages/pymiesim
.. |coverage| image:: https://raw.githubusercontent.com/MartinPdeS/PyMieSim/python-coverage-comment-action-data/badge.svg
    :alt: Unittest coverage
    :target: https://htmlpreview.github.io/?https://github.com/MartinPdeS/PyMieSim/blob/python-coverage-comment-action-data/htmlcov/index.html
.. |ci/cd| image:: https://github.com/martinpdes/pymiesim/actions/workflows/deploy_coverage.yml/badge.svg
    :alt: Unittest Status
.. |code_structure| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/code_structure.png
    :width: 800
    :alt: Structure of the library
.. |example_gui| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/example_gui.png
    :width: 800
    :alt: Structure of the library
.. |wikipedia_example| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/wikipedia_example.png
    :width: 800
    :alt: Example wikipedia
.. |example_plasmon| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/plasmonic_resonances.png
    :width: 800
    :alt: Plasmonic resonances
.. |example_qsca| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/Qsca_diameter.png
    :width: 800
    :alt: Qsca vs diameter
.. |anaconda| image:: https://anaconda.org/martinpdes/pymiesim/badges/version.svg
    :alt: Anaconda version
    :target: https://anaconda.org/martinpdes/pymiesim
.. |anaconda_download| image:: https://anaconda.org/martinpdes/pymiesim/badges/downloads.svg
    :alt: Anaconda downloads
    :target: https://anaconda.org/martinpdes/pymiesim
.. |anaconda_date| image:: https://anaconda.org/martinpdes/pymiesim/badges/latest_release_relative_date.svg
    :alt: Latest release date
    :target: https://anaconda.org/martinpdes/pymiesim

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "PyMieSim",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "mie, scattering, backscatter, sphere, cylinder, nanoparticle, phase function, efficiency, rayleigh, backscattering",
    "author": null,
    "author_email": "Martin Poinsinet de Sivry-Houle <martin.poinsinet.de.sivry@gmail.com>",
    "download_url": null,
    "platform": null,
    "description": "|logo|\n\n.. list-table::\n   :widths: 10 25 25 25\n   :header-rows: 0\n\n   * - Meta\n     - |python|\n     - |docs|\n     - |zenodo|\n   * - Testing\n     - |ci/cd|\n     - |coverage|\n     - |colab|\n   * - PyPI\n     - |PyPI|\n     - |PyPI_download|\n     -\n   * - Anaconda\n     - |anaconda|\n     - |anaconda_download|\n     - |anaconda_date|\n\nPyMieSim\n========\n\n**PyMieSim** is an open-source Python package for fast and flexible Mie\nscattering simulations.  It supports spherical, cylindrical and core--shell\nparticles and provides helper classes for custom sources and detectors.\nThe project targets both quick single-scatterer studies and large parametric\nexperiments.\n\nFeatures\n--------\n- Solvers for spheres, cylinders and core--shell geometries.\n- Built-in models for plane wave and Gaussian sources.\n- Multiple detector types including photodiodes and coherent modes.\n- Simple data analysis with pandas DataFrame outputs.\n\nInstallation\n------------\nPyMieSim is available on PyPI and Anaconda.  Install it with:\n\n.. code-block:: bash\n\n   pip install PyMieSim\n   conda install PyMieSim\n\nSee the `online documentation <https://pymiesim.readthedocs.io/>`_ for detailed\nusage and additional examples.\n\nQuick example\n-------------\nBelow is a short example computing the scattering efficiency of a sphere.\n\n.. code-block:: python\n\n   import numpy as np\n   from PyMieSim.experiment.scatterer import Sphere\n   from PyMieSim.experiment.source import Gaussian\n   from PyMieSim.experiment import Setup\n   from PyMieSim.units import nanometer, degree, watt, AU, RIU\n\n   source = Gaussian(\n       wavelength=np.linspace(400, 1000, 500) * nanometer,\n       polarization=0 * degree,\n       optical_power=1e-3 * watt,\n       NA=0.2 * AU,\n   )\n\n   scatterer = Sphere(\n       diameter=[200] * nanometer,\n       property=[4] * RIU,\n       medium_property=1 * RIU,\n       source=source,\n   )\n\n   experiment = Setup(scatterer=scatterer, source=source)\n   df = experiment.get(\"Qsca\")\n   df.plot_data(x=\"source:wavelength\")\n\nBuilding from source\n--------------------\nFor development or manual compilation, clone the repository and run:\n\n.. code-block:: bash\n\n   git submodule update --init\n   mkdir build && cd build\n   cmake ../ -G\"Unix Makefiles\"\n   sudo make install\n   cd ..\n   python -m pip install .\n\nTesting\n-------\nRun the unit tests with:\n\n.. code-block:: bash\n\n   pip install PyMieSim[testing]\n   pytest\n\nCiting PyMieSim\n---------------\nIf you use PyMieSim in academic work, please cite:\n\n.. code-block:: none\n\n   @article{PoinsinetdeSivry-Houle:23,\n       author = {Martin Poinsinet de Sivry-Houle and Nicolas Godbout and Caroline Boudoux},\n       journal = {Opt. Continuum},\n       title = {PyMieSim: an open-source library for fast and flexible far-field Mie scattering simulations},\n       volume = {2},\n       number = {3},\n       pages = {520--534},\n       year = {2023},\n       doi = {10.1364/OPTCON.473102},\n   }\n\nContact\n-------\nFor questions or contributions, contact `martin.poinsinet.de.sivry@gmail.com <mailto:martin.poinsinet.de.sivry@gmail.com>`_.\n\n.. |logo| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/logo.png\n    :alt: PyOptik logo\n.. |python| image:: https://img.shields.io/pypi/pyversions/pymiesim.svg\n    :alt: Python\n    :target: https://www.python.org/\n.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5593704.svg\n    :alt: Scientific article\n    :target: https://doi.org/10.5281/zenodo.4556074\n.. |colab| image:: https://colab.research.google.com/assets/colab-badge.svg\n    :alt: Google Colab\n    :target: https://colab.research.google.com/github/MartinPdeS/PyMieSim/blob/master/notebook.ipynb\n.. |docs| image:: https://github.com/martinpdes/pymiesim/actions/workflows/deploy_documentation.yml/badge.svg\n    :target: https://martinpdes.github.io/PyMieSim/\n    :alt: Documentation Status\n.. |PyPI| image:: https://badge.fury.io/py/PyMieSim.svg\n    :alt: PyPI version\n    :target: https://badge.fury.io/py/PyMieSim\n.. |PyPI_download| image:: https://img.shields.io/pypi/dm/PyMieSim?style=plastic&label=PyPI%20downloads&labelColor=hex&color=hex\n    :alt: PyPI downloads\n    :target: https://pypistats.org/packages/pymiesim\n.. |coverage| image:: https://raw.githubusercontent.com/MartinPdeS/PyMieSim/python-coverage-comment-action-data/badge.svg\n    :alt: Unittest coverage\n    :target: https://htmlpreview.github.io/?https://github.com/MartinPdeS/PyMieSim/blob/python-coverage-comment-action-data/htmlcov/index.html\n.. |ci/cd| image:: https://github.com/martinpdes/pymiesim/actions/workflows/deploy_coverage.yml/badge.svg\n    :alt: Unittest Status\n.. |code_structure| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/code_structure.png\n    :width: 800\n    :alt: Structure of the library\n.. |example_gui| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/example_gui.png\n    :width: 800\n    :alt: Structure of the library\n.. |wikipedia_example| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/wikipedia_example.png\n    :width: 800\n    :alt: Example wikipedia\n.. |example_plasmon| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/plasmonic_resonances.png\n    :width: 800\n    :alt: Plasmonic resonances\n.. |example_qsca| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/Qsca_diameter.png\n    :width: 800\n    :alt: Qsca vs diameter\n.. |anaconda| image:: https://anaconda.org/martinpdes/pymiesim/badges/version.svg\n    :alt: Anaconda version\n    :target: https://anaconda.org/martinpdes/pymiesim\n.. |anaconda_download| image:: https://anaconda.org/martinpdes/pymiesim/badges/downloads.svg\n    :alt: Anaconda downloads\n    :target: https://anaconda.org/martinpdes/pymiesim\n.. |anaconda_date| image:: https://anaconda.org/martinpdes/pymiesim/badges/latest_release_relative_date.svg\n    :alt: Latest release date\n    :target: https://anaconda.org/martinpdes/pymiesim\n",
    "bugtrack_url": null,
    "license": "MIT License\n         \n         Copyright (c) 2020 Martin Poinsinet de Sivry-Houle\n         \n         Permission is hereby granted, free of charge, to any person obtaining a copy\n         of this software and associated documentation files (the \"Software\"), to deal\n         in the Software without restriction, including without limitation the rights\n         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n         copies of the Software, and to permit persons to whom the Software is\n         furnished to do so, subject to the following conditions:\n         \n         The above copyright notice and this permission notice shall be included in all\n         copies or substantial portions of the Software.\n         \n         THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n         SOFTWARE.\n         ",
    "summary": "A package for light scattering computation.",
    "version": "3.6.3",
    "project_urls": {
        "Documentation": "https://martinpdes.github.io/PyMieSim/",
        "Repository": "https://github.com/MartinPdeS/PyMieSim"
    },
    "split_keywords": [
        "mie",
        " scattering",
        " backscatter",
        " sphere",
        " cylinder",
        " nanoparticle",
        " phase function",
        " efficiency",
        " rayleigh",
        " backscattering"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "442bcdaf4702fc47beb7a1f8530bacc9feab1035fd4b925cc7b35db890c2d232",
                "md5": "c973e240c4e7d98516e5e9dc2f81fdae",
                "sha256": "9895e693824213ef38ba9ee99fcb77a30d0d3a88ae7ae7d5cc4ae7302a594ff5"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c973e240c4e7d98516e5e9dc2f81fdae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 3660301,
            "upload_time": "2025-07-19T23:40:07",
            "upload_time_iso_8601": "2025-07-19T23:40:07.744002Z",
            "url": "https://files.pythonhosted.org/packages/44/2b/cdaf4702fc47beb7a1f8530bacc9feab1035fd4b925cc7b35db890c2d232/pymiesim-3.6.3-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90c07a7ec58605fd16620dcf7cffe2d8902b6e188745fef8394d5fe92e67c33b",
                "md5": "d4bcd473a04fe664ee7ae3816cfc9340",
                "sha256": "260fd56ceced83f87c6de181b24a29d9144cefc3df750c1ee20e2181ed7cc6f5"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4bcd473a04fe664ee7ae3816cfc9340",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 3211872,
            "upload_time": "2025-07-19T23:40:15",
            "upload_time_iso_8601": "2025-07-19T23:40:15.079602Z",
            "url": "https://files.pythonhosted.org/packages/90/c0/7a7ec58605fd16620dcf7cffe2d8902b6e188745fef8394d5fe92e67c33b/pymiesim-3.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b18b456156ec0863ba986e9ec8ba073ac17ee59da10a0772e301eb94b4dc3d63",
                "md5": "bb2c0673bb12af5a4f692e93baba37d2",
                "sha256": "6cec2df534e774e7ea122928cbe830d5bcd0552527e57b74d42a674c29b54625"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bb2c0673bb12af5a4f692e93baba37d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 3106988,
            "upload_time": "2025-07-19T23:40:21",
            "upload_time_iso_8601": "2025-07-19T23:40:21.285457Z",
            "url": "https://files.pythonhosted.org/packages/b1/8b/456156ec0863ba986e9ec8ba073ac17ee59da10a0772e301eb94b4dc3d63/pymiesim-3.6.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fe398c417593cc8ddf8da222aef840676137d81b8e20d5a0ade97bb173490e7",
                "md5": "a0dfbce5ddf163117d3cfd6e623533c9",
                "sha256": "78633b6b3a9cec97ae0c2dac70dda7c65fd0c8950032c3cb977080b759d92d4b"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a0dfbce5ddf163117d3cfd6e623533c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 4532154,
            "upload_time": "2025-07-19T23:40:10",
            "upload_time_iso_8601": "2025-07-19T23:40:10.255033Z",
            "url": "https://files.pythonhosted.org/packages/9f/e3/98c417593cc8ddf8da222aef840676137d81b8e20d5a0ade97bb173490e7/pymiesim-3.6.3-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bc6c80ccd581a7323b7fbb1e2bdb1f667738525dbb7017a7125ebb5edaa51d6",
                "md5": "51e6834556d3ed6f1a814a430032bc9f",
                "sha256": "fc45c6be5b9c98e7ce7fcb135e28d9839af21c293db6194397e717cd9518a33d"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51e6834556d3ed6f1a814a430032bc9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 4288332,
            "upload_time": "2025-07-19T23:40:16",
            "upload_time_iso_8601": "2025-07-19T23:40:16.517906Z",
            "url": "https://files.pythonhosted.org/packages/8b/c6/c80ccd581a7323b7fbb1e2bdb1f667738525dbb7017a7125ebb5edaa51d6/pymiesim-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11aa60bb61becd219c0f4ae377885a0b7ffcef82d198cd4c79d86e1fe55e82ec",
                "md5": "ebd623ac49c4e6ef3eca32aa18cec8ad",
                "sha256": "abe6914ffff1d8adb37265dfcd2d3bba523d7879a7b1347c1d84f9780bc5c1d2"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ebd623ac49c4e6ef3eca32aa18cec8ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 5145563,
            "upload_time": "2025-07-19T23:40:22",
            "upload_time_iso_8601": "2025-07-19T23:40:22.850802Z",
            "url": "https://files.pythonhosted.org/packages/11/aa/60bb61becd219c0f4ae377885a0b7ffcef82d198cd4c79d86e1fe55e82ec/pymiesim-3.6.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2838f6b57974640d34c8366705967bc4e2824f25708ff4ba729615d45149eb8",
                "md5": "74dbc37264363b5ad9acb6edd837d3dd",
                "sha256": "945086488e9ef40f06cacc0a9c13fd3e43f87083ed2b632640a1c1eb6c933e73"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "74dbc37264363b5ad9acb6edd837d3dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 5411506,
            "upload_time": "2025-07-19T23:40:11",
            "upload_time_iso_8601": "2025-07-19T23:40:11.816334Z",
            "url": "https://files.pythonhosted.org/packages/f2/83/8f6b57974640d34c8366705967bc4e2824f25708ff4ba729615d45149eb8/pymiesim-3.6.3-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "691d6e02ac53ba8271ac24091cd554f57f3771ab9feb5ea99d99b26aca790fa6",
                "md5": "c657be505743a54f6a75dcb9d1800ab4",
                "sha256": "101bf3cbfbde07bb30083f4b90ac9be451f7e9420c60034247d92d00e5986f6c"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c657be505743a54f6a75dcb9d1800ab4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 5359887,
            "upload_time": "2025-07-19T23:40:18",
            "upload_time_iso_8601": "2025-07-19T23:40:18.152981Z",
            "url": "https://files.pythonhosted.org/packages/69/1d/6e02ac53ba8271ac24091cd554f57f3771ab9feb5ea99d99b26aca790fa6/pymiesim-3.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2f7ce7a4d0e61c911d868b5ed0a249f1064c82c4e802ab3f042e56566de5a56",
                "md5": "a9e5c62c985fd49ce28d7fe87367f95f",
                "sha256": "7a279aa355b4e1cb0ed1dc87437bd87cc87fd3e04c2e2e41ef5b9bd0b8f2d121"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a9e5c62c985fd49ce28d7fe87367f95f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 7183532,
            "upload_time": "2025-07-19T23:40:24",
            "upload_time_iso_8601": "2025-07-19T23:40:24.648530Z",
            "url": "https://files.pythonhosted.org/packages/b2/f7/ce7a4d0e61c911d868b5ed0a249f1064c82c4e802ab3f042e56566de5a56/pymiesim-3.6.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f85fc9879634977d99fca5c8169dae83272a8423fad5ab5c709b050b29631d7",
                "md5": "e6ef6838a53ec22aefdce56d1028ea24",
                "sha256": "d984ca99dde78cd9e8b887beae885d613a2613b63906801907a1644edc81012a"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp313-cp313-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e6ef6838a53ec22aefdce56d1028ea24",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 6282593,
            "upload_time": "2025-07-19T23:40:13",
            "upload_time_iso_8601": "2025-07-19T23:40:13.452686Z",
            "url": "https://files.pythonhosted.org/packages/7f/85/fc9879634977d99fca5c8169dae83272a8423fad5ab5c709b050b29631d7/pymiesim-3.6.3-cp313-cp313-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a245b3629f23709efedb7f0b6d3bb21b53d144f66f96fe1b30d1cfe4f5012788",
                "md5": "a359f9eb73c5b9a03903c4c572b7f137",
                "sha256": "ee103a0740488000f0574b38bf5b2fdbd7f14ea5571d6c5093901426ce04c927"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a359f9eb73c5b9a03903c4c572b7f137",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 6415985,
            "upload_time": "2025-07-19T23:40:19",
            "upload_time_iso_8601": "2025-07-19T23:40:19.697962Z",
            "url": "https://files.pythonhosted.org/packages/a2/45/b3629f23709efedb7f0b6d3bb21b53d144f66f96fe1b30d1cfe4f5012788/pymiesim-3.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "973d95843b7b87fbbbdd8844689ec0c215cfadeb3ae2a5d6c15f36ee55e05782",
                "md5": "9d24d90b356dad79a98db295b0cfacdf",
                "sha256": "27158cd50e1a049620b4fde3e1cab0db2acefb5d2c1a01adb402a7fe1c5a2403"
            },
            "downloads": -1,
            "filename": "pymiesim-3.6.3-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9d24d90b356dad79a98db295b0cfacdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 9215505,
            "upload_time": "2025-07-19T23:40:26",
            "upload_time_iso_8601": "2025-07-19T23:40:26.359255Z",
            "url": "https://files.pythonhosted.org/packages/97/3d/95843b7b87fbbbdd8844689ec0c215cfadeb3ae2a5d6c15f36ee55e05782/pymiesim-3.6.3-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-19 23:40:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MartinPdeS",
    "github_project": "PyMieSim",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pymiesim"
}
        
Elapsed time: 0.55021s