PyMieSim


NamePyMieSim JSON
Version 1.9.0 PyPI version JSON
download
home_pagehttps://github.com/MartinPdeS/PyMieSim
SummaryA package for light scattering computation.
upload_time2024-04-30 20:01:04
maintainerNone
docs_urlNone
authorMartin Poinsinet de Sivry
requires_pythonNone
licenseMIT
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|

|python|
|zenodo|
|colab|
|unittest|
|docs|
|PyPi|
|PyPi_download|


PyMieSim
========

PyMieSim is a software designed for comprehensive Mie scattering analysis, featuring a user-friendly installation and operation process. The characterization of the scattering event within PyMieSim is determined by a set of specific properties, as illustrated in the subsequent figure.

Currently, PyMieSim integrates three distinct solvers tailored to three different types of scatterers: spherical particles, infinite cylindrical particles, and core-shell spherical particles. Additional parameters governing the scattering event are contingent upon the attributes of the light source and the detector (when applicable). The attributes pertinent to each of these components are delineated in the ensuing figure.


.. image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/code_structure.png
  :width: 800
  :alt: Structure of the library

The package also lets you construct an **Experiment** using **SphereSet**/**CoreShellSet**/**CylinderSet**, **SourceSet** and **DetectorSet**.
Those class define the type of scatterers, light sources and detectors you want to study.


----

Getting started
****************

PyMieSim was developed to be a used in Python script as shown in the documentation section. Although, since version 1.7.0 it is possible to use the new graphical user interface. To use is, you first need to install it:

.. code-block:: python

   >>> pip install PyMieSim

Once this is done you can run the graphic interface as follows:

.. code-block:: python

   >>> python -m PyMieSim

Clicking the "Calculate" button should render the following:

|example_gui|

----

Documentation
**************
All the latest available documentation is available `here <https://pymiesim.readthedocs.io/en/latest/>`_ or you can click the following badge:

|docs|

----

Google Colab
**************
It's 2024, you don't need to run all your code on you computer anymore. Google Colab is a platform which allows to write/use python scripts remotely.
You can open the PyMieSim.ipynb in the file to access it or click on the following "Open in Colab" badge:

|colab|

----


Installation
************

For common version of Windows, Linux and MacOS, (on x86_64 architecture), the package can readily be installed using pip;

.. code-block:: python

   >>> pip install PyMieSim

The ready to install wheel is not available for arm chip of the newer mac M1, M2 product. You can however install manually the package.


If, however, this fail you can build the package from scratch following the steps on the **Manual building** section.

**Note:** Wheel support now extended to `manylinux2014 <https://www.python.org/dev/peps/pep-0599/>`_.


----



Manual building
***************

To manually buld the project on your computer make sure that you do have gcc installed (c++ and fortran compiler), plus python version 3.7+.
For windows system I recommend install MingGW with g++ and fortran compiler.

This being done, the following commands should do the trick.

Linux / MacOs
~~~~~~~~~~~~~

.. code-block:: python

   >>> git clone https://github.com/MartinPdeS/PyMieSim.git
   >>> cd PyMieSim
   >>> git submodule init && git submodule update
   >>> mkdir build
   >>> cd build
   >>> cmake ../ -G"Unix Makefiles" (macOS, Linux)
   >>> cmake ../ -G"MinGW Makefiles" (Windows)
   >>> sudo make install
   >>> cd ..
   >>> python -m pip install .

----

Testing
*******

To test localy (with cloning the GitHub repository) you'll need to install the dependencies and run the coverage command as

.. code:: python

   >>> git clone https://github.com/MartinPdeS/PyMieSim.git
   >>> cd PyMieSim
   >>> pip install -r requirements/requirements.txt
   >>> coverage run --source=PyMieSim --module pytest --verbose tests
   >>> coverage report --show-missing

----



Coding examples
***************
Plenty of examples are available online, I invite you to check the `examples <https://pymiesim.readthedocs.io/en/master/gallery/index.html>`_
section of the documentation.


----

Scientific article
******************
The associated article is free of access on this link `article <https://opg.optica.org/optcon/fulltext.cfm?uri=optcon-2-3-520&id=526697>`_


Citing this work?
******************
I spent a full year to develop this tool for you to use so if it helped you in your research, I would greatly appreciate you citing the article associated to my work. Many thanks!

.. code-block:: none

   @article{PoinsinetdeSivry-Houle:23,
       author = {Martin Poinsinet de Sivry-Houle and Nicolas Godbout and Caroline Boudoux},
       journal = {Opt. Continuum},
       keywords = {Light scattering; Mie theory; Optical coherence tomography; Radiation pressure; Scattering theory; Surface plasmon resonance},
       number = {3},
       pages = {520--534},
       publisher = {Optica Publishing Group},
       title = {PyMieSim: an open-source library for fast and flexible far-field Mie scattering simulations},
       volume = {2},
       month = {Mar},
       year = {2023},
       url = {https://opg.optica.org/optcon/abstract.cfm?URI=optcon-2-3-520},
       doi = {10.1364/OPTCON.473102},
       abstract = {},
   }

----



Contact Information
************************
As of 2024, the project is still under development. If you want to collaborate, it would be a pleasure! I encourage you to contact me.

PyMieSim was written by `Martin Poinsinet de Sivry-Houle <https://github.com/MartinPdS>`_  .

Email:`martin.poinsinet-de-sivry@polymtl.ca <mailto:martin.poinsinet-de-sivry@polymtl.ca?subject=PyMieSim>`_ .

.. |python| image:: https://img.shields.io/pypi/pyversions/pymiesim.svg
   :target: https://www.python.org/

.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5593704.svg
   :target: https://doi.org/10.5281/zenodo.4556074

.. |colab| image:: https://colab.research.google.com/assets/colab-badge.svg
   :target: https://colab.research.google.com/drive/1FUi_hRUXxCVvkHBY10YE1yR-nTATcDei?usp=sharing

.. |docs| image:: https://readthedocs.org/projects/pymiesim/badge/?version=latest
   :target: https://pymiesim.readthedocs.io/en/latest/

.. |PyPi| image:: https://badge.fury.io/py/PyMieSim.svg
    :target: https://badge.fury.io/py/PyMieSim

.. |Logo| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/logo.png

.. |PyPi_download| image:: https://img.shields.io/pypi/dm/PyMieSim.svg
   :target: https://pypistats.org/packages/pymiesim

.. |unittest| image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/MartinPdeS/f0955be398d59efac69042c1b0fbece2/raw/a3b36ca9f6bebaab5180686bef481ed0d2ebfb71/PyMieSimcoverage_badge.json

.. |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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/MartinPdeS/PyMieSim",
    "name": "PyMieSim",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "mie, scattering, backscatter, sphere, cylinder, nanoparticle, phase function, efficiency, rayleigh, backscattering",
    "author": "Martin Poinsinet de Sivry",
    "author_email": "Martin.poinsinet.de.sivry@gmail.com",
    "download_url": null,
    "platform": "unix",
    "description": "|Logo|\n\n|python|\n|zenodo|\n|colab|\n|unittest|\n|docs|\n|PyPi|\n|PyPi_download|\n\n\nPyMieSim\n========\n\nPyMieSim is a software designed for comprehensive Mie scattering analysis, featuring a user-friendly installation and operation process. The characterization of the scattering event within PyMieSim is determined by a set of specific properties, as illustrated in the subsequent figure.\n\nCurrently, PyMieSim integrates three distinct solvers tailored to three different types of scatterers: spherical particles, infinite cylindrical particles, and core-shell spherical particles. Additional parameters governing the scattering event are contingent upon the attributes of the light source and the detector (when applicable). The attributes pertinent to each of these components are delineated in the ensuing figure.\n\n\n.. image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/code_structure.png\n  :width: 800\n  :alt: Structure of the library\n\nThe package also lets you construct an **Experiment** using **SphereSet**/**CoreShellSet**/**CylinderSet**, **SourceSet** and **DetectorSet**.\nThose class define the type of scatterers, light sources and detectors you want to study.\n\n\n----\n\nGetting started\n****************\n\nPyMieSim was developed to be a used in Python script as shown in the documentation section. Although, since version 1.7.0 it is possible to use the new graphical user interface. To use is, you first need to install it:\n\n.. code-block:: python\n\n   >>> pip install PyMieSim\n\nOnce this is done you can run the graphic interface as follows:\n\n.. code-block:: python\n\n   >>> python -m PyMieSim\n\nClicking the \"Calculate\" button should render the following:\n\n|example_gui|\n\n----\n\nDocumentation\n**************\nAll the latest available documentation is available `here <https://pymiesim.readthedocs.io/en/latest/>`_ or you can click the following badge:\n\n|docs|\n\n----\n\nGoogle Colab\n**************\nIt's 2024, you don't need to run all your code on you computer anymore. Google Colab is a platform which allows to write/use python scripts remotely.\nYou can open the PyMieSim.ipynb in the file to access it or click on the following \"Open in Colab\" badge:\n\n|colab|\n\n----\n\n\nInstallation\n************\n\nFor common version of Windows, Linux and MacOS, (on x86_64 architecture), the package can readily be installed using pip;\n\n.. code-block:: python\n\n   >>> pip install PyMieSim\n\nThe ready to install wheel is not available for arm chip of the newer mac M1, M2 product. You can however install manually the package.\n\n\nIf, however, this fail you can build the package from scratch following the steps on the **Manual building** section.\n\n**Note:** Wheel support now extended to `manylinux2014 <https://www.python.org/dev/peps/pep-0599/>`_.\n\n\n----\n\n\n\nManual building\n***************\n\nTo manually buld the project on your computer make sure that you do have gcc installed (c++ and fortran compiler), plus python version 3.7+.\nFor windows system I recommend install MingGW with g++ and fortran compiler.\n\nThis being done, the following commands should do the trick.\n\nLinux / MacOs\n~~~~~~~~~~~~~\n\n.. code-block:: python\n\n   >>> git clone https://github.com/MartinPdeS/PyMieSim.git\n   >>> cd PyMieSim\n   >>> git submodule init && git submodule update\n   >>> mkdir build\n   >>> cd build\n   >>> cmake ../ -G\"Unix Makefiles\" (macOS, Linux)\n   >>> cmake ../ -G\"MinGW Makefiles\" (Windows)\n   >>> sudo make install\n   >>> cd ..\n   >>> python -m pip install .\n\n----\n\nTesting\n*******\n\nTo test localy (with cloning the GitHub repository) you'll need to install the dependencies and run the coverage command as\n\n.. code:: python\n\n   >>> git clone https://github.com/MartinPdeS/PyMieSim.git\n   >>> cd PyMieSim\n   >>> pip install -r requirements/requirements.txt\n   >>> coverage run --source=PyMieSim --module pytest --verbose tests\n   >>> coverage report --show-missing\n\n----\n\n\n\nCoding examples\n***************\nPlenty of examples are available online, I invite you to check the `examples <https://pymiesim.readthedocs.io/en/master/gallery/index.html>`_\nsection of the documentation.\n\n\n----\n\nScientific article\n******************\nThe associated article is free of access on this link `article <https://opg.optica.org/optcon/fulltext.cfm?uri=optcon-2-3-520&id=526697>`_\n\n\nCiting this work?\n******************\nI spent a full year to develop this tool for you to use so if it helped you in your research, I would greatly appreciate you citing the article associated to my work. Many thanks!\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       keywords = {Light scattering; Mie theory; Optical coherence tomography; Radiation pressure; Scattering theory; Surface plasmon resonance},\n       number = {3},\n       pages = {520--534},\n       publisher = {Optica Publishing Group},\n       title = {PyMieSim: an open-source library for fast and flexible far-field Mie scattering simulations},\n       volume = {2},\n       month = {Mar},\n       year = {2023},\n       url = {https://opg.optica.org/optcon/abstract.cfm?URI=optcon-2-3-520},\n       doi = {10.1364/OPTCON.473102},\n       abstract = {},\n   }\n\n----\n\n\n\nContact Information\n************************\nAs of 2024, the project is still under development. If you want to collaborate, it would be a pleasure! I encourage you to contact me.\n\nPyMieSim was written by `Martin Poinsinet de Sivry-Houle <https://github.com/MartinPdS>`_  .\n\nEmail:`martin.poinsinet-de-sivry@polymtl.ca <mailto:martin.poinsinet-de-sivry@polymtl.ca?subject=PyMieSim>`_ .\n\n.. |python| image:: https://img.shields.io/pypi/pyversions/pymiesim.svg\n   :target: https://www.python.org/\n\n.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5593704.svg\n   :target: https://doi.org/10.5281/zenodo.4556074\n\n.. |colab| image:: https://colab.research.google.com/assets/colab-badge.svg\n   :target: https://colab.research.google.com/drive/1FUi_hRUXxCVvkHBY10YE1yR-nTATcDei?usp=sharing\n\n.. |docs| image:: https://readthedocs.org/projects/pymiesim/badge/?version=latest\n   :target: https://pymiesim.readthedocs.io/en/latest/\n\n.. |PyPi| image:: https://badge.fury.io/py/PyMieSim.svg\n    :target: https://badge.fury.io/py/PyMieSim\n\n.. |Logo| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/logo.png\n\n.. |PyPi_download| image:: https://img.shields.io/pypi/dm/PyMieSim.svg\n   :target: https://pypistats.org/packages/pymiesim\n\n.. |unittest| image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/MartinPdeS/f0955be398d59efac69042c1b0fbece2/raw/a3b36ca9f6bebaab5180686bef481ed0d2ebfb71/PyMieSimcoverage_badge.json\n\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\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",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A package for light scattering computation.",
    "version": "1.9.0",
    "project_urls": {
        "Homepage": "https://github.com/MartinPdeS/PyMieSim"
    },
    "split_keywords": [
        "mie",
        " scattering",
        " backscatter",
        " sphere",
        " cylinder",
        " nanoparticle",
        " phase function",
        " efficiency",
        " rayleigh",
        " backscattering"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab252e42ac33a07871a433881c400e627f237073a0e5b6fc22d1553096eef1e3",
                "md5": "05059ac153140aebe6d49539b4229af4",
                "sha256": "d45fc550a2ac0f196bce73aacb29b41be859fe16fb47d60af2fa901079019abc"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp310-cp310-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "05059ac153140aebe6d49539b4229af4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3320421,
            "upload_time": "2024-04-30T20:01:04",
            "upload_time_iso_8601": "2024-04-30T20:01:04.337653Z",
            "url": "https://files.pythonhosted.org/packages/ab/25/2e42ac33a07871a433881c400e627f237073a0e5b6fc22d1553096eef1e3/PyMieSim-1.9.0-cp310-cp310-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddca6cbfbecca1695920d730f88fb9cc9bedc404fdcd0586ec684b2c099a8544",
                "md5": "b7c63a81de0584a4e924f7dd6cdff61d",
                "sha256": "4e963bd7d233b4c245a8982c3b5177ffc72924d004cc826efbbe5a08d14f11ff"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp310-cp310-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7c63a81de0584a4e924f7dd6cdff61d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3320413,
            "upload_time": "2024-04-30T20:01:07",
            "upload_time_iso_8601": "2024-04-30T20:01:07.899487Z",
            "url": "https://files.pythonhosted.org/packages/dd/ca/6cbfbecca1695920d730f88fb9cc9bedc404fdcd0586ec684b2c099a8544/PyMieSim-1.9.0-cp310-cp310-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c04e73e013a626d6343d4730cca59e15010c36fc4e301fddfef875c04860a6c1",
                "md5": "75abc07bd1949a34c9586b9c95e4ef90",
                "sha256": "2ecc33b356f74e75fa38cc23862b21e8d6960d03456aef16100097bbcabda273"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "75abc07bd1949a34c9586b9c95e4ef90",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3320414,
            "upload_time": "2024-04-30T20:01:10",
            "upload_time_iso_8601": "2024-04-30T20:01:10.798222Z",
            "url": "https://files.pythonhosted.org/packages/c0/4e/73e013a626d6343d4730cca59e15010c36fc4e301fddfef875c04860a6c1/PyMieSim-1.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6148c4ab8f92286b5b79276d6f1ea110593e92eb934edd24522414183fe3431",
                "md5": "2bf6474788cd7a425ea2cdcb82fcdff5",
                "sha256": "e284a9b57916dc9c319849c79fb040e0772e976836c08e7394af70714c568266"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bf6474788cd7a425ea2cdcb82fcdff5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3279567,
            "upload_time": "2024-04-30T20:01:32",
            "upload_time_iso_8601": "2024-04-30T20:01:32.657012Z",
            "url": "https://files.pythonhosted.org/packages/d6/14/8c4ab8f92286b5b79276d6f1ea110593e92eb934edd24522414183fe3431/PyMieSim-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec3b23bd9d0767f9dbe7bb199c98bf75198a18a8b83fbe9beeb5b14a650d22ad",
                "md5": "c0eeacfbcd64b6368b8929bfedfaa03d",
                "sha256": "fe948627bee02e419111de83f0efbfa27553e843ec37a7ba6b1666b392dadbad"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c0eeacfbcd64b6368b8929bfedfaa03d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3082238,
            "upload_time": "2024-04-30T20:01:40",
            "upload_time_iso_8601": "2024-04-30T20:01:40.703828Z",
            "url": "https://files.pythonhosted.org/packages/ec/3b/23bd9d0767f9dbe7bb199c98bf75198a18a8b83fbe9beeb5b14a650d22ad/PyMieSim-1.9.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8533479bff9f70f5ac1be6d64a5aee833bf24b356d0fbe5001f100449f32a06",
                "md5": "c4d6031932ca6b6f430aa73944cef8fe",
                "sha256": "64d6048cceb5a648f6984839627d5ad53bb9f490efb7127c4cb644cce2837196"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp311-cp311-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "c4d6031932ca6b6f430aa73944cef8fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 6110963,
            "upload_time": "2024-04-30T20:01:14",
            "upload_time_iso_8601": "2024-04-30T20:01:14.168683Z",
            "url": "https://files.pythonhosted.org/packages/b8/53/3479bff9f70f5ac1be6d64a5aee833bf24b356d0fbe5001f100449f32a06/PyMieSim-1.9.0-cp311-cp311-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "670b098df4e5266a9bcdcabebcbc4f5531761919695ffad63af9fb2d80f74cd8",
                "md5": "d88f8def56a0733b26a06cefb362dd07",
                "sha256": "e95f6dfde56983c0727ed943d404cc00e4f3dcb20eee11c06af0bb3af8a601e6"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp311-cp311-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d88f8def56a0733b26a06cefb362dd07",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 6110962,
            "upload_time": "2024-04-30T20:01:16",
            "upload_time_iso_8601": "2024-04-30T20:01:16.328754Z",
            "url": "https://files.pythonhosted.org/packages/67/0b/098df4e5266a9bcdcabebcbc4f5531761919695ffad63af9fb2d80f74cd8/PyMieSim-1.9.0-cp311-cp311-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9db2c72cd3cbccb7abc6a6e90fc669431fd67b7fda8876ebad04895d0e6b14b9",
                "md5": "abebd9308f1e6c35bd125fc973acd44a",
                "sha256": "e7f32e1da5fc682915c086246a2025a7ecc43a70433773962b8a2ee49ee9d6f7"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "abebd9308f1e6c35bd125fc973acd44a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 6110957,
            "upload_time": "2024-04-30T20:01:18",
            "upload_time_iso_8601": "2024-04-30T20:01:18.355925Z",
            "url": "https://files.pythonhosted.org/packages/9d/b2/c72cd3cbccb7abc6a6e90fc669431fd67b7fda8876ebad04895d0e6b14b9/PyMieSim-1.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea7660da6d0ba118ae5b803829f4632f673200bce218fae0804008aebb27e7f3",
                "md5": "8b0bf673963c7a0551b8a30c3be05872",
                "sha256": "e33bb9c2afea200a065ca4fa25dbf010dc0d39f95e7a946d978e8e6c7cddbe5f"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b0bf673963c7a0551b8a30c3be05872",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5129704,
            "upload_time": "2024-04-30T20:01:35",
            "upload_time_iso_8601": "2024-04-30T20:01:35.452673Z",
            "url": "https://files.pythonhosted.org/packages/ea/76/60da6d0ba118ae5b803829f4632f673200bce218fae0804008aebb27e7f3/PyMieSim-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fc8aecfead8207408fdfd125cce7a0d2ae9049d048ca9660b718b6c7ac5737c",
                "md5": "4266d57719eaec5ce760d3be11128721",
                "sha256": "7e18d1351c81e50c9db292f60b2f9bef34ff108e05c59d346dc36accd2a7e501"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4266d57719eaec5ce760d3be11128721",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5799826,
            "upload_time": "2024-04-30T20:01:42",
            "upload_time_iso_8601": "2024-04-30T20:01:42.889077Z",
            "url": "https://files.pythonhosted.org/packages/0f/c8/aecfead8207408fdfd125cce7a0d2ae9049d048ca9660b718b6c7ac5737c/PyMieSim-1.9.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a56063c4258a25b2b228b016d1bf23cd0b01599d12e33f7cbfa07f7ecad055f",
                "md5": "f079e6c51cfae0681eccd6153172d1b8",
                "sha256": "7455fdc5c302b27f4ed7089838f685c9ad2e6f64d52accd5e6150ebcb7aca28d"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "f079e6c51cfae0681eccd6153172d1b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 8903919,
            "upload_time": "2024-04-30T20:01:21",
            "upload_time_iso_8601": "2024-04-30T20:01:21.371156Z",
            "url": "https://files.pythonhosted.org/packages/4a/56/063c4258a25b2b228b016d1bf23cd0b01599d12e33f7cbfa07f7ecad055f/PyMieSim-1.9.0-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f057abd7c05878900863094b83ae48ba758d4f6628e766c647e0008c4345dcf",
                "md5": "eaf8befbaf98b475e124cfb0088a547e",
                "sha256": "a84e05b9914f03faa56d239b38e40c46d7d8134d0fabb0e68792eca895397088"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaf8befbaf98b475e124cfb0088a547e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 8903916,
            "upload_time": "2024-04-30T20:01:25",
            "upload_time_iso_8601": "2024-04-30T20:01:25.022456Z",
            "url": "https://files.pythonhosted.org/packages/3f/05/7abd7c05878900863094b83ae48ba758d4f6628e766c647e0008c4345dcf/PyMieSim-1.9.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f9f9a5520f8ed46eda33c21249a2a15461184ef9de810267668758589a2582d",
                "md5": "c2475f8310e57f31aea90cd9a28ae18d",
                "sha256": "6d3cc9ba3cdca3caea774124e455f08772fe128eb364dc6498d38218e27793da"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c2475f8310e57f31aea90cd9a28ae18d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 8903909,
            "upload_time": "2024-04-30T20:01:29",
            "upload_time_iso_8601": "2024-04-30T20:01:29.542060Z",
            "url": "https://files.pythonhosted.org/packages/0f/9f/9a5520f8ed46eda33c21249a2a15461184ef9de810267668758589a2582d/PyMieSim-1.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28be22bedccaccacbd17d901954bef348957eabe71f26b2058c5e174f342a397",
                "md5": "09fc278f7fe670a38221607236347dff",
                "sha256": "b103aecf56d67829e493fbab5a94b1e0e81876a2590ac10e32eeb1e04da286e4"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09fc278f7fe670a38221607236347dff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 6983084,
            "upload_time": "2024-04-30T20:01:38",
            "upload_time_iso_8601": "2024-04-30T20:01:38.267216Z",
            "url": "https://files.pythonhosted.org/packages/28/be/22bedccaccacbd17d901954bef348957eabe71f26b2058c5e174f342a397/PyMieSim-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b834b554f4ff714c2dbb2683264c7d94d4ae572a47fda4ce66c989379be796a8",
                "md5": "fb5e44644805e600590581e74e1149e3",
                "sha256": "660ba0742e0ed9ed1477c139e19650190c13ca0e368506c41abba0baebabc4d2"
            },
            "downloads": -1,
            "filename": "PyMieSim-1.9.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fb5e44644805e600590581e74e1149e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 8519414,
            "upload_time": "2024-04-30T20:01:46",
            "upload_time_iso_8601": "2024-04-30T20:01:46.205251Z",
            "url": "https://files.pythonhosted.org/packages/b8/34/b554f4ff714c2dbb2683264c7d94d4ae572a47fda4ce66c989379be796a8/PyMieSim-1.9.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-30 20:01:04",
    "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.36642s