| Name | PyMieSim JSON |
| Version |
3.8.6
JSON |
| download |
| home_page | None |
| Summary | A package for light scattering computation. |
| upload_time | 2025-10-28 13:52:12 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | >=3.10 |
| license | MIT 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 --channels MartinPdeS
See the `online documentation <https://martinpdes.github.io/PyMieSim/>`_ 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 TypedUnit import ureg
from PyMieSim.experiment.scatterer import Sphere
from PyMieSim.experiment.source import Gaussian
from PyMieSim.experiment import Setup
source = Gaussian(
wavelength=np.linspace(400, 1000, 500) * ureg.nanometer,
polarization=0 * ureg.degree,
optical_power=1e-3 * ureg.watt,
NA=0.2 * ureg.AU,
)
scatterer = Sphere(
diameter=[200, 300] * ureg.nanometer,
property=[4] * ureg.RIU,
medium_property=1 * ureg.RIU,
source=source,
)
experiment = Setup(scatterer=scatterer, source=source)
df = experiment.get("Qsca")
df.plot(x="source:wavelength")
.. image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/resonances.png
:width: 1000
:align: center
:alt: Scattering efficiency of a 200 nm sphere with refractive index 4.0.
Code structure
---------------
Here is the architecture for a standard workflow using PyMieSim:
.. image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/code_structure.png
:width: 1000
:align: center
:alt: Code structure of a standard workflow using PyMieSim.
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
.. |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 scattering simulations.\nIt supports spherical, cylindrical and core--shell particles and provides helper classes for custom sources and detectors.\nThe project targets both quick single-scatterer studies and large parametric experiments.\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 --channels MartinPdeS\n\nSee the `online documentation <https://martinpdes.github.io/PyMieSim/>`_ for detailed usage 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 TypedUnit import ureg\n\n from PyMieSim.experiment.scatterer import Sphere\n from PyMieSim.experiment.source import Gaussian\n from PyMieSim.experiment import Setup\n\n source = Gaussian(\n wavelength=np.linspace(400, 1000, 500) * ureg.nanometer,\n polarization=0 * ureg.degree,\n optical_power=1e-3 * ureg.watt,\n NA=0.2 * ureg.AU,\n )\n\n scatterer = Sphere(\n diameter=[200, 300] * ureg.nanometer,\n property=[4] * ureg.RIU,\n medium_property=1 * ureg.RIU,\n source=source,\n )\n\n experiment = Setup(scatterer=scatterer, source=source)\n df = experiment.get(\"Qsca\")\n df.plot(x=\"source:wavelength\")\n\n.. image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/resonances.png\n :width: 1000\n :align: center\n :alt: Scattering efficiency of a 200 nm sphere with refractive index 4.0.\n\n\n\nCode structure\n---------------\nHere is the architecture for a standard workflow using PyMieSim:\n\n.. image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/code_structure.png\n :width: 1000\n :align: center\n :alt: Code structure of a standard workflow using PyMieSim.\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.. |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.8.6",
"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": "180561199415d067c4972c3495d9397460bf9f8405a5b54799c222b7ac8c8da1",
"md5": "f5130ed05b423f428b11e0790e6bd060",
"sha256": "a3792adcdc7fa69e2f6be05137d8f832a0226921082ad6b84da5bb8f6b0cbe74"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp311-cp311-macosx_15_0_arm64.whl",
"has_sig": false,
"md5_digest": "f5130ed05b423f428b11e0790e6bd060",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 2604962,
"upload_time": "2025-10-28T13:52:12",
"upload_time_iso_8601": "2025-10-28T13:52:12.174898Z",
"url": "https://files.pythonhosted.org/packages/18/05/61199415d067c4972c3495d9397460bf9f8405a5b54799c222b7ac8c8da1/pymiesim-3.8.6-cp311-cp311-macosx_15_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e32f6c0f8c28cdd650473d83b3d82b9aaf5da25e33fd560a19bf9523625fd3a9",
"md5": "485eb3a3ddc1ef864ca59d2bba79639b",
"sha256": "e88d7e50c50f31b48235ee2d2a5cb60e1edb080e96cca96be5d260100c0f080b"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "485eb3a3ddc1ef864ca59d2bba79639b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 2909019,
"upload_time": "2025-10-28T13:52:18",
"upload_time_iso_8601": "2025-10-28T13:52:18.508520Z",
"url": "https://files.pythonhosted.org/packages/e3/2f/6c0f8c28cdd650473d83b3d82b9aaf5da25e33fd560a19bf9523625fd3a9/pymiesim-3.8.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebcfbf9ee73e17bc5716f9112f4282fb4e908ffa565ae617fa7d79557cbe4583",
"md5": "9044ba3d1347683261ef4f7a76ca0815",
"sha256": "5d4f015e4934eac1c4734cbb0b2cf05a4cedff42774a8c4ec9e76d3dc6903ec0"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9044ba3d1347683261ef4f7a76ca0815",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 4056144,
"upload_time": "2025-10-28T13:52:23",
"upload_time_iso_8601": "2025-10-28T13:52:23.484915Z",
"url": "https://files.pythonhosted.org/packages/eb/cf/bf9ee73e17bc5716f9112f4282fb4e908ffa565ae617fa7d79557cbe4583/pymiesim-3.8.6-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db3b644f1ced10e3997c87bd751c77987a8182e0563d4a4084f9af7df96a9643",
"md5": "adecb32fb6662d5d07b7fa5366502c47",
"sha256": "fcd223abe18a93c4fdd0b195a298c8a539e5fce8017d161787ef670abda26b9e"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp312-cp312-macosx_15_0_arm64.whl",
"has_sig": false,
"md5_digest": "adecb32fb6662d5d07b7fa5366502c47",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 3521340,
"upload_time": "2025-10-28T13:52:15",
"upload_time_iso_8601": "2025-10-28T13:52:15.103928Z",
"url": "https://files.pythonhosted.org/packages/db/3b/644f1ced10e3997c87bd751c77987a8182e0563d4a4084f9af7df96a9643/pymiesim-3.8.6-cp312-cp312-macosx_15_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4240afde6254046aa9d2a651aba49ad1c2f37860af13fe90adf5e702340d74b5",
"md5": "f1fd135fa6ac1906ffc6087c5b0b7601",
"sha256": "5009d53a7cee9a969aa94cd528f55acfd1f9d829212c57a1beca12283d0bfbd4"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "f1fd135fa6ac1906ffc6087c5b0b7601",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 4081157,
"upload_time": "2025-10-28T13:52:20",
"upload_time_iso_8601": "2025-10-28T13:52:20.344806Z",
"url": "https://files.pythonhosted.org/packages/42/40/afde6254046aa9d2a651aba49ad1c2f37860af13fe90adf5e702340d74b5/pymiesim-3.8.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f36366de64c5a5e888f8a6b75eaad38684ed56fdeccb2088139994b4c4598634",
"md5": "c660e81ce04ad816d3b3d1e08fb56c67",
"sha256": "f8ddb3b2b0da194d990f0b19f5ed180f8bdcf6146bb553d9ca8afdafef04fcf7"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "c660e81ce04ad816d3b3d1e08fb56c67",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 7456823,
"upload_time": "2025-10-28T13:52:24",
"upload_time_iso_8601": "2025-10-28T13:52:24.984948Z",
"url": "https://files.pythonhosted.org/packages/f3/63/66de64c5a5e888f8a6b75eaad38684ed56fdeccb2088139994b4c4598634/pymiesim-3.8.6-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d18f24b419cf55789d2143f0f63e29ea03ba0d02a12397c201d1f70adf8d9d73",
"md5": "7d6408452c5ff6c1d7f56cc674831836",
"sha256": "8edd739564f5c970cbc06a01e4de6547feda749efa064b9949b334be668fa972"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp313-cp313-macosx_15_0_arm64.whl",
"has_sig": false,
"md5_digest": "7d6408452c5ff6c1d7f56cc674831836",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 4438127,
"upload_time": "2025-10-28T13:52:16",
"upload_time_iso_8601": "2025-10-28T13:52:16.908749Z",
"url": "https://files.pythonhosted.org/packages/d1/8f/24b419cf55789d2143f0f63e29ea03ba0d02a12397c201d1f70adf8d9d73/pymiesim-3.8.6-cp313-cp313-macosx_15_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51c5819c14192cda42db694c8ba07909edd39a31fd14fa2b90e3bab648e44f35",
"md5": "eac85ac579a796efdbe8eddd8ef71f3c",
"sha256": "09ddeb037e9606ea7cf2f1fbbf21e08bc9ef6460efbcc60d10070b1a34799822"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "eac85ac579a796efdbe8eddd8ef71f3c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 5255310,
"upload_time": "2025-10-28T13:52:21",
"upload_time_iso_8601": "2025-10-28T13:52:21.933493Z",
"url": "https://files.pythonhosted.org/packages/51/c5/819c14192cda42db694c8ba07909edd39a31fd14fa2b90e3bab648e44f35/pymiesim-3.8.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "632f038cf4fd74864b41f466e3075e74d5e97bfc0b0190bc1741628b4e8e1211",
"md5": "b48e81a22292cb80b2824b82a756906f",
"sha256": "91a58986ddbc77fab5df2fc572e5f29af5dfcb38ae88df119a03bb0396169df4"
},
"downloads": -1,
"filename": "pymiesim-3.8.6-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "b48e81a22292cb80b2824b82a756906f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.10",
"size": 10858243,
"upload_time": "2025-10-28T13:52:27",
"upload_time_iso_8601": "2025-10-28T13:52:27.386132Z",
"url": "https://files.pythonhosted.org/packages/63/2f/038cf4fd74864b41f466e3075e74d5e97bfc0b0190bc1741628b4e8e1211/pymiesim-3.8.6-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-28 13:52:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "MartinPdeS",
"github_project": "PyMieSim",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pymiesim"
}