pmmc


Namepmmc JSON
Version 0.2.5 PyPI version JSON
download
home_pagehttps://github.com/fangq/mmc
SummaryPython bindings for Mesh-based Monte Carlo (MMC) photon transport simulator
upload_time2025-07-19 22:37:52
maintainerQianqian Fang
docs_urlNone
authorQianqian Fang
requires_python>=3.6
licenseGPLv3+
keywords monte carlo simulation biophotonics ray-tracing rendering gpu modeling biomedical optics tissue optics simulator optics opencl
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ![](https://mcx.space/img/mcx_wiki_banner.png)

# PMMC - Python bindings for Mesh-based Monte Carlo (MMC) photon transport simulator

- Copyright: (C) Qianqian Fang (2025) <q.fang at neu.edu>
- License: GNU Public License V3 or later
- Version: 0.2.5
- URL: https://pypi.org/project/pmmc/
- Github: https://github.com/fangq/mmc

![Linux Python Module](https://github.com/fangq/mmc/actions/workflows/build_linux_manywheel.yml/badge.svg)\
![MacOS Python Module](https://github.com/fangq/mmc/actions/workflows/build_macos_wheel.yml/badge.svg)\
![Windows Python Module](https://github.com/fangq/mmc/actions/workflows/build_windows_wheel.yml/badge.svg)

This module provides a Python binding for Mesh-based Monte Carlo (MMC).
For other binaries, including the standalone executable and the MATLAB bindings,
see [our website](https://mcx.space).

Mesh-based Monte Carlo (MMC) is a 3D Monte Carlo (MC) simulation software for
photon transport in complex turbid media. MMC combines the strengths of the 
MC-based technique and the finite-element (FE) method: on the one hand, it 
can handle general media, including low-scattering ones, as in the MC method; 
on the other hand, it can use an FE-like tetrahedral mesh to represent curved 
boundaries and complex structures, making it even more accurate, flexible, 
and memory efficient. MMC uses the state-of-the-art ray-tracing techniques 
to simulate photon propagation in a mesh space. It has been extensively 
optimized for excellent computational efficiency and portability.


## How to Install

* PIP: ```pip install pmmc```, see https://pypi.org/project/pmmc/


## Runtime Dependencies
* **CPU or GPU**: An OpenCL-capable CPU or GPU; most modern CPUs or GPUs support OpenCL -
an industrial-standard heterogeneous computing library and specification (https://www.khronos.org/opencl/)
* **OpenCL CPU or GPU runtime/driver**: Both NVIDIA and AMD GPU graphics drivers should contain
out-of-box OpenCL runtimes or drivers; for Intel GPUs, one should install additional OpenCL runtime
support from https://github.com/intel/compute-runtime or install the `intel-opencl-icd` package
if the OS provides (such as Ubuntu 22.04); one can also install an open-source OpenCL runtime
[POCL](http://portablecl.org/), using package manager such as `sudo apt-get install pocl-opencl-icd`. However,
POCL's support is largely limited to CPUs. You **do not need** to install CUDA SDK to use pmmc.
* **Python**: Python 3.6 and newer is required. **Python 2 is not supported**.
* **numpy**: Used to pass/receive volumetric information to/from pmmc. To install, use either conda or pip 
package managers: `pip install numpy` or `conda install numpy`
* **iso2mesh** is a easy-to-use mesh generator for creating the tetrahedral meshed domain
for pmmc, install it with `pip install iso2mesh`
* (optional) **jdata**: Only needed to read/write JNIfTI output files. To install, use pip: `pip install jdata` 
on all operating systems; For Debian-based Linux distributions, you can also install to the system interpreter 
using apt-get: `sudo apt-get install python3-jdata`. See https://pypi.org/project/jdata/ for more details. 
* (optional) **bjdata**: Only needed to read/write BJData/UBJSON files. To install, run `pip install bjdata` 
on all operating systems; For Debian-based Linux distributions, you can also install to the system interpreter 
using apt-get: `sudo apt-get install python3-bjdata`. See https://pypi.org/project/bjdata/ for more details. 
* (optional) **matplotlib**: For plotting the results. To install, run either `pip install matplotlib` or
`conda install matplotlib`

## Build Instructions

### Build Dependencies
* **Operating System**: pmmc and mmc can be compiled on most OSes, including Windows, Linux and MacOS.
* **OpenCL library**: compiling mmc or pmmc requires to link with `libOpenCL.so` on Linux, or `libOpenCL.dylib`
on MacOS or `OpenCL.dll` on Windows. These libraries should have been installed by either graphics driver or
OpenCL runtimes.
* **Python Interpreter**: Python 3.6 or above. The ```pip``` Python package manager and the ```wheel``` package (available
  via ```pip```) are not required but recommended.
* **C/C++ Compiler**: pmmc can be compiled using a wide variety of C compilers, including
  * GNU GCC for Linux, MacOS (intalled via MacPorts or brew), and Windows (installed via msys2, mingw64 or cygwin64)
  * Microsoft Visual Studio C/C++ Compiler for Windows.
  * Apple Clang for macOS, available via Xcode.

  Refer to each OS's online documentations for more in-depth information on how to install these compilers.
  MacOS provides built-in OpenCL library support.
* **OpenMP**: The installed C/C++ Compiler should have support for [OpenMP](https://www.openmp.org/). 
  GCC and Microsoft Visual Studio compiler support OpenMP out of the box. Apple Clang, however, requires manual 
  installation of OpenMP libraries for Apple Clang. The easiest way to do this is via the [Brew](https://brew.sh/) package
  manager, preferably after selecting the correct Xcode version:
```bash
brew install libomp
brew link --force libomp
```
* **CMake**: CMake version 3.15 and later is required. Refer to the [CMake website](https://cmake.org/download/) for more information on how to download.
  CMake is also widely available on package managers across all operating systems.

### Build Steps
1. Ensure that ```cmake```, ```python``` and the C/C++ compiler are all located over your ```PATH```.
This can be queried via ```echo $env:PATH``` on Windows or ```echo $PATH``` on Linux. If not, locate them and add their folder to the ```PATH```.

2. Clone the repository and switch to the ```pmmc/``` folder:
```bash
git clone --recursive https://github.com/fangq/mmc.git
cd mmc/pmmc
```
3. One can run `python3 setup.py install` or `python3 -m pip install .` to both locally build and install the module

4. If one only wants to locally build the module, one should run `python3 -m pip wheel .`

5. If the binary module is successfully built locally, you should see a binary wheel file `pmmc-X.X.X-cpXX-cpXX-*.whl`
stored inside the `mmc/pmmc` folder. You can install this wheel package using `python3 -m pip install --force-reinstall pmmc-*.whl`
to force installing this locally compiled `pmmc` module and overwrite any previously installed versions.


## How to use

The PMMC module is easy to use. You can use the `pmmc.gpuinfo()` function to first verify
if you have NVIDIA/CUDA compatible GPUs installed; if there are NVIDIA GPUs detected,
you can then call the `run()` function to launch a photon simulation.

A simulation can be defined conveniently in two approaches - a one-liner and a two-liner:

* For the one-liner, one simply pass on each MMC simulation setting as positional
argument. The supported setting names are compatible to nearly all the input fields
for the MATLAB version of MMC - [MMCLAB](https://github.com/fangq/mmc/blob/master/mmclab/mmclab.m))

```python3
import pmmc
import numpy as np
import matplotlib.pyplot as plt

import iso2mesh as i2m
node, face, elem = i2m.meshabox([0, 0, 0], [60, 60, 60], 10, 100)  # create a mesh

gpus = pmmc.gpuinfo()  # list all available GPUs

res = pmmc.run(nphoton=1000000, node=node, elem=elem, elemprop=np.ones(elem.shape[0]), tstart=0, tend=5e-9,
               tstep=5e-9, srcpos=[30,30,0], srcdir=[0,0,1], prop=np.array([[0, 0, 1, 1], [0.005, 1, 0.01, 1.37]]))
res['flux'].shape

plt.imshow(np.log10(res['flux'][30,:, :].squeeze()))
plt.show()
```

* Alternatively, one can also define a Python dict object containing each setting
as a key, and pass on the dict object to `pmmc.run()`

```python3
import pmmc
import numpy as np
cfg = {'nphoton': 1000000, 'node': node, 'elem': elem, 'elemprop': np.ones(elem.shape[0]), 'tstart':0, 'tend':5e-9, 'tstep':5e-9,
       'srcpos': [30,30,0], 'srcdir':[0,0,1], 'prop':[[0,0,1,1],[0.005,1,0.01,1.37]]}
res = pmmc.run(cfg)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/fangq/mmc",
    "name": "pmmc",
    "maintainer": "Qianqian Fang",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "Monte Carlo simulation, Biophotonics, Ray-tracing, Rendering, GPU, Modeling, Biomedical Optics, Tissue Optics, Simulator, Optics, OpenCL",
    "author": "Qianqian Fang",
    "author_email": "q.fang@neu.edu",
    "download_url": "https://mcx.space",
    "platform": null,
    "description": "![](https://mcx.space/img/mcx_wiki_banner.png)\r\n\r\n# PMMC - Python bindings for Mesh-based Monte Carlo (MMC) photon transport simulator\r\n\r\n- Copyright: (C) Qianqian Fang (2025) <q.fang at neu.edu>\r\n- License: GNU Public License V3 or later\r\n- Version: 0.2.5\r\n- URL: https://pypi.org/project/pmmc/\r\n- Github: https://github.com/fangq/mmc\r\n\r\n![Linux Python Module](https://github.com/fangq/mmc/actions/workflows/build_linux_manywheel.yml/badge.svg)\\\r\n![MacOS Python Module](https://github.com/fangq/mmc/actions/workflows/build_macos_wheel.yml/badge.svg)\\\r\n![Windows Python Module](https://github.com/fangq/mmc/actions/workflows/build_windows_wheel.yml/badge.svg)\r\n\r\nThis module provides a Python binding for Mesh-based Monte Carlo (MMC).\r\nFor other binaries, including the standalone executable and the MATLAB bindings,\r\nsee [our website](https://mcx.space).\r\n\r\nMesh-based Monte Carlo (MMC) is a 3D Monte Carlo (MC) simulation software for\r\nphoton transport in complex turbid media. MMC combines the strengths of the \r\nMC-based technique and the finite-element (FE) method: on the one hand, it \r\ncan handle general media, including low-scattering ones, as in the MC method; \r\non the other hand, it can use an FE-like tetrahedral mesh to represent curved \r\nboundaries and complex structures, making it even more accurate, flexible, \r\nand memory efficient. MMC uses the state-of-the-art ray-tracing techniques \r\nto simulate photon propagation in a mesh space. It has been extensively \r\noptimized for excellent computational efficiency and portability.\r\n\r\n\r\n## How to Install\r\n\r\n* PIP: ```pip install pmmc```, see https://pypi.org/project/pmmc/\r\n\r\n\r\n## Runtime Dependencies\r\n* **CPU or GPU**: An OpenCL-capable CPU or GPU; most modern CPUs or GPUs support OpenCL -\r\nan industrial-standard heterogeneous computing library and specification (https://www.khronos.org/opencl/)\r\n* **OpenCL CPU or GPU runtime/driver**: Both NVIDIA and AMD GPU graphics drivers should contain\r\nout-of-box OpenCL runtimes or drivers; for Intel GPUs, one should install additional OpenCL runtime\r\nsupport from https://github.com/intel/compute-runtime or install the `intel-opencl-icd` package\r\nif the OS provides (such as Ubuntu 22.04); one can also install an open-source OpenCL runtime\r\n[POCL](http://portablecl.org/), using package manager such as `sudo apt-get install pocl-opencl-icd`. However,\r\nPOCL's support is largely limited to CPUs. You **do not need** to install CUDA SDK to use pmmc.\r\n* **Python**: Python 3.6 and newer is required. **Python 2 is not supported**.\r\n* **numpy**: Used to pass/receive volumetric information to/from pmmc. To install, use either conda or pip \r\npackage managers: `pip install numpy` or `conda install numpy`\r\n* **iso2mesh** is a easy-to-use mesh generator for creating the tetrahedral meshed domain\r\nfor pmmc, install it with `pip install iso2mesh`\r\n* (optional) **jdata**: Only needed to read/write JNIfTI output files. To install, use pip: `pip install jdata` \r\non all operating systems; For Debian-based Linux distributions, you can also install to the system interpreter \r\nusing apt-get: `sudo apt-get install python3-jdata`. See https://pypi.org/project/jdata/ for more details. \r\n* (optional) **bjdata**: Only needed to read/write BJData/UBJSON files. To install, run `pip install bjdata` \r\non all operating systems; For Debian-based Linux distributions, you can also install to the system interpreter \r\nusing apt-get: `sudo apt-get install python3-bjdata`. See https://pypi.org/project/bjdata/ for more details. \r\n* (optional) **matplotlib**: For plotting the results. To install, run either `pip install matplotlib` or\r\n`conda install matplotlib`\r\n\r\n## Build Instructions\r\n\r\n### Build Dependencies\r\n* **Operating System**: pmmc and mmc can be compiled on most OSes, including Windows, Linux and MacOS.\r\n* **OpenCL library**: compiling mmc or pmmc requires to link with `libOpenCL.so` on Linux, or `libOpenCL.dylib`\r\non MacOS or `OpenCL.dll` on Windows. These libraries should have been installed by either graphics driver or\r\nOpenCL runtimes.\r\n* **Python Interpreter**: Python 3.6 or above. The ```pip``` Python package manager and the ```wheel``` package (available\r\n  via ```pip```) are not required but recommended.\r\n* **C/C++ Compiler**: pmmc can be compiled using a wide variety of C compilers, including\r\n  * GNU GCC for Linux, MacOS (intalled via MacPorts or brew), and Windows (installed via msys2, mingw64 or cygwin64)\r\n  * Microsoft Visual Studio C/C++ Compiler for Windows.\r\n  * Apple Clang for macOS, available via Xcode.\r\n\r\n  Refer to each OS's online documentations for more in-depth information on how to install these compilers.\r\n  MacOS provides built-in OpenCL library support.\r\n* **OpenMP**: The installed C/C++ Compiler should have support for [OpenMP](https://www.openmp.org/). \r\n  GCC and Microsoft Visual Studio compiler support OpenMP out of the box. Apple Clang, however, requires manual \r\n  installation of OpenMP libraries for Apple Clang. The easiest way to do this is via the [Brew](https://brew.sh/) package\r\n  manager, preferably after selecting the correct Xcode version:\r\n```bash\r\nbrew install libomp\r\nbrew link --force libomp\r\n```\r\n* **CMake**: CMake version 3.15 and later is required. Refer to the [CMake website](https://cmake.org/download/) for more information on how to download.\r\n  CMake is also widely available on package managers across all operating systems.\r\n\r\n### Build Steps\r\n1. Ensure that ```cmake```, ```python``` and the C/C++ compiler are all located over your ```PATH```.\r\nThis can be queried via ```echo $env:PATH``` on Windows or ```echo $PATH``` on Linux. If not, locate them and add their folder to the ```PATH```.\r\n\r\n2. Clone the repository and switch to the ```pmmc/``` folder:\r\n```bash\r\ngit clone --recursive https://github.com/fangq/mmc.git\r\ncd mmc/pmmc\r\n```\r\n3. One can run `python3 setup.py install` or `python3 -m pip install .` to both locally build and install the module\r\n\r\n4. If one only wants to locally build the module, one should run `python3 -m pip wheel .`\r\n\r\n5. If the binary module is successfully built locally, you should see a binary wheel file `pmmc-X.X.X-cpXX-cpXX-*.whl`\r\nstored inside the `mmc/pmmc` folder. You can install this wheel package using `python3 -m pip install --force-reinstall pmmc-*.whl`\r\nto force installing this locally compiled `pmmc` module and overwrite any previously installed versions.\r\n\r\n\r\n## How to use\r\n\r\nThe PMMC module is easy to use. You can use the `pmmc.gpuinfo()` function to first verify\r\nif you have NVIDIA/CUDA compatible GPUs installed; if there are NVIDIA GPUs detected,\r\nyou can then call the `run()` function to launch a photon simulation.\r\n\r\nA simulation can be defined conveniently in two approaches - a one-liner and a two-liner:\r\n\r\n* For the one-liner, one simply pass on each MMC simulation setting as positional\r\nargument. The supported setting names are compatible to nearly all the input fields\r\nfor the MATLAB version of MMC - [MMCLAB](https://github.com/fangq/mmc/blob/master/mmclab/mmclab.m))\r\n\r\n```python3\r\nimport pmmc\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\n\r\nimport iso2mesh as i2m\r\nnode, face, elem = i2m.meshabox([0, 0, 0], [60, 60, 60], 10, 100)  # create a mesh\r\n\r\ngpus = pmmc.gpuinfo()  # list all available GPUs\r\n\r\nres = pmmc.run(nphoton=1000000, node=node, elem=elem, elemprop=np.ones(elem.shape[0]), tstart=0, tend=5e-9,\r\n               tstep=5e-9, srcpos=[30,30,0], srcdir=[0,0,1], prop=np.array([[0, 0, 1, 1], [0.005, 1, 0.01, 1.37]]))\r\nres['flux'].shape\r\n\r\nplt.imshow(np.log10(res['flux'][30,:, :].squeeze()))\r\nplt.show()\r\n```\r\n\r\n* Alternatively, one can also define a Python dict object containing each setting\r\nas a key, and pass on the dict object to `pmmc.run()`\r\n\r\n```python3\r\nimport pmmc\r\nimport numpy as np\r\ncfg = {'nphoton': 1000000, 'node': node, 'elem': elem, 'elemprop': np.ones(elem.shape[0]), 'tstart':0, 'tend':5e-9, 'tstep':5e-9,\r\n       'srcpos': [30,30,0], 'srcdir':[0,0,1], 'prop':[[0,0,1,1],[0.005,1,0.01,1.37]]}\r\nres = pmmc.run(cfg)\r\n```\r\n",
    "bugtrack_url": null,
    "license": "GPLv3+",
    "summary": "Python bindings for Mesh-based Monte Carlo (MMC) photon transport simulator",
    "version": "0.2.5",
    "project_urls": {
        "Download": "https://mcx.space",
        "Homepage": "https://github.com/fangq/mmc"
    },
    "split_keywords": [
        "monte carlo simulation",
        " biophotonics",
        " ray-tracing",
        " rendering",
        " gpu",
        " modeling",
        " biomedical optics",
        " tissue optics",
        " simulator",
        " optics",
        " opencl"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "363d43e9f0c4b467f0128bdb921fc50b73f057d7d582fead354c397eeecee212",
                "md5": "76142ad7a90f56401096d26a41954b40",
                "sha256": "1dffe771b34512add7b81b4d8ca46e7b06b03ea6d18c9bcadf0d61914997f7ba"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76142ad7a90f56401096d26a41954b40",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 187127,
            "upload_time": "2025-07-19T22:37:52",
            "upload_time_iso_8601": "2025-07-19T22:37:52.216135Z",
            "url": "https://files.pythonhosted.org/packages/36/3d/43e9f0c4b467f0128bdb921fc50b73f057d7d582fead354c397eeecee212/pmmc-0.2.5-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "252e46541042f96efc3dd1ddb277abf2dd133fb9d2c3ab3c08a47eb7807999ca",
                "md5": "16d0c753aff7e4d8ff3cf03b2d93f256",
                "sha256": "030e5ffb0a4128d70ecb95f8c7f0c44c71eb7a62bc9972941209ccde66e2bfb0"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp310-cp310-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "16d0c753aff7e4d8ff3cf03b2d93f256",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 345070,
            "upload_time": "2025-07-19T22:37:50",
            "upload_time_iso_8601": "2025-07-19T22:37:50.145388Z",
            "url": "https://files.pythonhosted.org/packages/25/2e/46541042f96efc3dd1ddb277abf2dd133fb9d2c3ab3c08a47eb7807999ca/pmmc-0.2.5-cp310-cp310-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e1f5497ef9b6a46d901d785848e63d78d78dddb44c640a5f5beee95e6afa55d",
                "md5": "7175b01ed16b2fa75ad7aa06fef51e1f",
                "sha256": "bffc49c26c05a36bacc38a613c2699153d6df69b5debb84a5c57077c299462ea"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7175b01ed16b2fa75ad7aa06fef51e1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 745935,
            "upload_time": "2025-07-19T22:34:36",
            "upload_time_iso_8601": "2025-07-19T22:34:36.319330Z",
            "url": "https://files.pythonhosted.org/packages/1e/1f/5497ef9b6a46d901d785848e63d78d78dddb44c640a5f5beee95e6afa55d/pmmc-0.2.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25e8d3fa2f5237b0c553d6a29d9c36e926f00d16f58d13036e5886ca2dd6820e",
                "md5": "186fafa6c27df4c02fe8f54d9ac2bc77",
                "sha256": "0351f6f048a3d3a3d7240248989597b15bd588658fc2d9ed388b287d05078348"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "186fafa6c27df4c02fe8f54d9ac2bc77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 505719,
            "upload_time": "2025-07-19T22:34:34",
            "upload_time_iso_8601": "2025-07-19T22:34:34.870932Z",
            "url": "https://files.pythonhosted.org/packages/25/e8/d3fa2f5237b0c553d6a29d9c36e926f00d16f58d13036e5886ca2dd6820e/pmmc-0.2.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efd92d0d84bff7ac75815a7e6a64a5a89d7cbd95f43019abdfc162b45294451e",
                "md5": "c0eb2f91180892329f88c4bf97d77242",
                "sha256": "97bf6887cc5fb6bb4a66a21fe1978b879fc754f51ebd42c6dcc5a1771a384def"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp311-cp311-macosx_13_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "c0eb2f91180892329f88c4bf97d77242",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 188508,
            "upload_time": "2025-07-19T22:37:53",
            "upload_time_iso_8601": "2025-07-19T22:37:53.772718Z",
            "url": "https://files.pythonhosted.org/packages/ef/d9/2d0d84bff7ac75815a7e6a64a5a89d7cbd95f43019abdfc162b45294451e/pmmc-0.2.5-cp311-cp311-macosx_13_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e6bfe9c1f195d65654a0861dc0da81ec4cbdb1aa01f39885e8af583c79b2fc5",
                "md5": "587ac41aaef84307b0b9af1b48240e16",
                "sha256": "5837ea7e3d00524abcc188aa47a34148555ecbdfe1c3090a503e580b0c279ced"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp311-cp311-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "587ac41aaef84307b0b9af1b48240e16",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 346063,
            "upload_time": "2025-07-19T22:37:51",
            "upload_time_iso_8601": "2025-07-19T22:37:51.443549Z",
            "url": "https://files.pythonhosted.org/packages/9e/6b/fe9c1f195d65654a0861dc0da81ec4cbdb1aa01f39885e8af583c79b2fc5/pmmc-0.2.5-cp311-cp311-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f878178b14a038842a4d4b04f5238c04ffb977bdd78734324482928029aebff",
                "md5": "22280c0b7b50b7cdbac7c5a9da68ac46",
                "sha256": "5e47a6288238150f117a9dba2778ec12064d6a43fdcd0ce6ff4b401d6cd9c6c3"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22280c0b7b50b7cdbac7c5a9da68ac46",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 747378,
            "upload_time": "2025-07-19T22:34:38",
            "upload_time_iso_8601": "2025-07-19T22:34:38.426442Z",
            "url": "https://files.pythonhosted.org/packages/3f/87/8178b14a038842a4d4b04f5238c04ffb977bdd78734324482928029aebff/pmmc-0.2.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7524ff52fbba123a247a166cfa911dad5a8c020c758662f747c302d4ae128b17",
                "md5": "a52a8f844621e5437d3ffcd668146ef6",
                "sha256": "f80825594e53b3cc716f01565e988a3b98a44055ad9b2217f9db0eb207dd5e1a"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a52a8f844621e5437d3ffcd668146ef6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 507779,
            "upload_time": "2025-07-19T22:34:36",
            "upload_time_iso_8601": "2025-07-19T22:34:36.055643Z",
            "url": "https://files.pythonhosted.org/packages/75/24/ff52fbba123a247a166cfa911dad5a8c020c758662f747c302d4ae128b17/pmmc-0.2.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7c79ad465d7fd47a906456c26425c08badf840c24e3f3da7a2638bbefaffdf0",
                "md5": "0719a4c6218dd5d94a7887ad609e9e2d",
                "sha256": "c0cc5c85ea06871f5c519bd40d55150dfc8b9b8bc383c9b767d4cae1c61f9fa6"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp312-cp312-macosx_13_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "0719a4c6218dd5d94a7887ad609e9e2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 187084,
            "upload_time": "2025-07-19T22:37:55",
            "upload_time_iso_8601": "2025-07-19T22:37:55.807021Z",
            "url": "https://files.pythonhosted.org/packages/d7/c7/9ad465d7fd47a906456c26425c08badf840c24e3f3da7a2638bbefaffdf0/pmmc-0.2.5-cp312-cp312-macosx_13_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d62845f3c0ef0db88a3b02ab095c4c2f98aba5f22c2df378263889a69cd3966b",
                "md5": "f1b42c3d1313c6cca38d815852e99f4d",
                "sha256": "4190c6f110e7c87a9b908b47b8a0eb62789bb264b3c7b7ecd11eec71f283f799"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp312-cp312-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "f1b42c3d1313c6cca38d815852e99f4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 344613,
            "upload_time": "2025-07-19T22:37:52",
            "upload_time_iso_8601": "2025-07-19T22:37:52.765285Z",
            "url": "https://files.pythonhosted.org/packages/d6/28/45f3c0ef0db88a3b02ab095c4c2f98aba5f22c2df378263889a69cd3966b/pmmc-0.2.5-cp312-cp312-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cca60b5b5cd2f38b03692487aecad59848006b8da9b67f8e6d30b3536e5a86ce",
                "md5": "4766aa25129e1ca74d3ffa9f0983460c",
                "sha256": "74293aff29635eb8a2974dc2d6e08cd84e9d1d6cbd7d93b1ef4d36ced21195a4"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4766aa25129e1ca74d3ffa9f0983460c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 746586,
            "upload_time": "2025-07-19T22:34:40",
            "upload_time_iso_8601": "2025-07-19T22:34:40.519517Z",
            "url": "https://files.pythonhosted.org/packages/cc/a6/0b5b5cd2f38b03692487aecad59848006b8da9b67f8e6d30b3536e5a86ce/pmmc-0.2.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e22e75d34599161a8b32be206c4b986553e33b19df75ef88dbbe06110476b134",
                "md5": "844b36bf3582623a783fc53a77c38891",
                "sha256": "dbfb018c4957b3d5515dfe9e7f137e17c4fb26e136c1106d654f3f24e9c63e39"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "844b36bf3582623a783fc53a77c38891",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 508076,
            "upload_time": "2025-07-19T22:34:37",
            "upload_time_iso_8601": "2025-07-19T22:34:37.480850Z",
            "url": "https://files.pythonhosted.org/packages/e2/2e/75d34599161a8b32be206c4b986553e33b19df75ef88dbbe06110476b134/pmmc-0.2.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e34b4664fc8217d7fb3c9dccb00e358274af51631d6b7a392579b592c264b4d",
                "md5": "454056d6a23f96660db33a4c9011e8e8",
                "sha256": "3945b0572f2f9ba5bb3dd25cc88d4875f6f798aae166f17d6e6df1172997a8be"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp313-cp313-macosx_13_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "454056d6a23f96660db33a4c9011e8e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 187076,
            "upload_time": "2025-07-19T22:37:58",
            "upload_time_iso_8601": "2025-07-19T22:37:58.123216Z",
            "url": "https://files.pythonhosted.org/packages/4e/34/b4664fc8217d7fb3c9dccb00e358274af51631d6b7a392579b592c264b4d/pmmc-0.2.5-cp313-cp313-macosx_13_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75fb4d99e2ce5608278f24d386fdcabfb0ba12d592ffb02079646a8c326e05dc",
                "md5": "9b6e762d476c2bdcfc11e92418002e56",
                "sha256": "7d1a71eff354031ea64a8178372911c6ad82114cec603baea5e2865bbc4a0946"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp313-cp313-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "9b6e762d476c2bdcfc11e92418002e56",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 344613,
            "upload_time": "2025-07-19T22:37:54",
            "upload_time_iso_8601": "2025-07-19T22:37:54.863284Z",
            "url": "https://files.pythonhosted.org/packages/75/fb/4d99e2ce5608278f24d386fdcabfb0ba12d592ffb02079646a8c326e05dc/pmmc-0.2.5-cp313-cp313-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29bc4376b3d15690787f61a9b53271816964bd25599f67dc32562dd4b24ed457",
                "md5": "6bf0820142903d4b91b36f165e5f7fe6",
                "sha256": "efb80b9380f67c6e47d08f3f840ad843f3c66fb47e573a311bc6b39c400d3075"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bf0820142903d4b91b36f165e5f7fe6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 746530,
            "upload_time": "2025-07-19T22:34:42",
            "upload_time_iso_8601": "2025-07-19T22:34:42.631933Z",
            "url": "https://files.pythonhosted.org/packages/29/bc/4376b3d15690787f61a9b53271816964bd25599f67dc32562dd4b24ed457/pmmc-0.2.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5cc09e8aa9dc3b0c72ca09a36a2de4fcc4d1e98176558190f69bb72224f0fe2",
                "md5": "7cb7fd097a3600be44e93edc2d94c7fa",
                "sha256": "449ab76263be6029c2a10f3a948568665bf82a61efe7e524beb932becb6d7e04"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7cb7fd097a3600be44e93edc2d94c7fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 746484,
            "upload_time": "2025-07-19T22:34:44",
            "upload_time_iso_8601": "2025-07-19T22:34:44.697718Z",
            "url": "https://files.pythonhosted.org/packages/a5/cc/09e8aa9dc3b0c72ca09a36a2de4fcc4d1e98176558190f69bb72224f0fe2/pmmc-0.2.5-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c34ababb7eb25b45cd9bc6368710050c3fa10a10fa88ced2305f8b9f042ccf0f",
                "md5": "bd4186d627ea4c9e895830577df4c3af",
                "sha256": "8631bdf907eb0f05c88842d2b754a1d6adf1ce10963a4c871f558089693337de"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bd4186d627ea4c9e895830577df4c3af",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.6",
            "size": 508095,
            "upload_time": "2025-07-19T22:34:39",
            "upload_time_iso_8601": "2025-07-19T22:34:39.464032Z",
            "url": "https://files.pythonhosted.org/packages/c3/4a/babb7eb25b45cd9bc6368710050c3fa10a10fa88ced2305f8b9f042ccf0f/pmmc-0.2.5-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "244d75f6a6e50521791f53c3ddda62e078f0835ae008a31c5781789ee675477b",
                "md5": "63a16dbc26752630825124cb55774703",
                "sha256": "348f834156684188b52ecc8c960e67f915eff601452883f9c6ca107348395822"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63a16dbc26752630825124cb55774703",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 746718,
            "upload_time": "2025-07-19T22:34:46",
            "upload_time_iso_8601": "2025-07-19T22:34:46.358186Z",
            "url": "https://files.pythonhosted.org/packages/24/4d/75f6a6e50521791f53c3ddda62e078f0835ae008a31c5781789ee675477b/pmmc-0.2.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0afd4bea2c9b83a11324159abb197bb324669bd67975074cd07a43d6a84c7482",
                "md5": "640f93ad0384f0f4c5ad14841063acbd",
                "sha256": "678ad236ccfdb15451aa091bd06b21c3e4357ca176eec91d3c46ac769d27f0df"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "640f93ad0384f0f4c5ad14841063acbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.6",
            "size": 746484,
            "upload_time": "2025-07-19T22:34:48",
            "upload_time_iso_8601": "2025-07-19T22:34:48.713534Z",
            "url": "https://files.pythonhosted.org/packages/0a/fd/4bea2c9b83a11324159abb197bb324669bd67975074cd07a43d6a84c7482/pmmc-0.2.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38a3e3f27e122df790808fbe184ebc7dcb545acff5cf5a09c83f99c32f0f698d",
                "md5": "da514b7dc3658c125092380640a945dd",
                "sha256": "bda98933d37a2d0779b564200a1b45341a921c394140cb2d7737c29fa4588a0e"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp36-cp36m-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da514b7dc3658c125092380640a945dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 185906,
            "upload_time": "2025-07-19T22:37:59",
            "upload_time_iso_8601": "2025-07-19T22:37:59.846655Z",
            "url": "https://files.pythonhosted.org/packages/38/a3/e3f27e122df790808fbe184ebc7dcb545acff5cf5a09c83f99c32f0f698d/pmmc-0.2.5-cp36-cp36m-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b87184d1fb4c68643374535664cf35b68c7523822b92e5cddd206287a6da93f",
                "md5": "be467f202b17d6c61201c873784af20b",
                "sha256": "5bc68a0382d9d935dda83f617e16005797e0fbe629dfcf7b8442a15c6490ce83"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "be467f202b17d6c61201c873784af20b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 507284,
            "upload_time": "2025-07-19T22:34:41",
            "upload_time_iso_8601": "2025-07-19T22:34:41.690790Z",
            "url": "https://files.pythonhosted.org/packages/6b/87/184d1fb4c68643374535664cf35b68c7523822b92e5cddd206287a6da93f/pmmc-0.2.5-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b5c9982967b9b3708421b730b5925a1b0cee8d9cb2a96f313f551298713215f",
                "md5": "8cc65d38eaaaf5bb121c6fd852982716",
                "sha256": "3e355395fcdfece1f41d3236ff74caba506729f7874fc46df76fbb0cc9755893"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp37-cp37m-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8cc65d38eaaaf5bb121c6fd852982716",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 185960,
            "upload_time": "2025-07-19T22:38:01",
            "upload_time_iso_8601": "2025-07-19T22:38:01.372025Z",
            "url": "https://files.pythonhosted.org/packages/5b/5c/9982967b9b3708421b730b5925a1b0cee8d9cb2a96f313f551298713215f/pmmc-0.2.5-cp37-cp37m-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de085c7cb4ebd9fe47c51223798f32a4e4254f91a00cabfeef2d4b711ca5cea5",
                "md5": "56b65b22e013d3c3d5a64fd46c186a62",
                "sha256": "f2ec8f70c34262aa0b377eb5585e31349276e14c6d8164245434f8c04c27c595"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "56b65b22e013d3c3d5a64fd46c186a62",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 507413,
            "upload_time": "2025-07-19T22:34:43",
            "upload_time_iso_8601": "2025-07-19T22:34:43.699029Z",
            "url": "https://files.pythonhosted.org/packages/de/08/5c7cb4ebd9fe47c51223798f32a4e4254f91a00cabfeef2d4b711ca5cea5/pmmc-0.2.5-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e0bb44223ea46c82f1e5ca6276c25427660fe5c052191b112f2620f70bcb6f7",
                "md5": "228754e3ed6c142c2ae1f9680945616b",
                "sha256": "52fb3943b79a7fbb7e1e1561fe6631712101364cfb3de7b048997410a53b925f"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp38-cp38-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "228754e3ed6c142c2ae1f9680945616b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 187057,
            "upload_time": "2025-07-19T22:38:03",
            "upload_time_iso_8601": "2025-07-19T22:38:03.182372Z",
            "url": "https://files.pythonhosted.org/packages/4e/0b/b44223ea46c82f1e5ca6276c25427660fe5c052191b112f2620f70bcb6f7/pmmc-0.2.5-cp38-cp38-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c127d63e68fbbbdcf66a114c8bd07838054cdfcf7b2ff9708c7a116bfd6fac75",
                "md5": "f31fcf22569609fe5b08885cb792852f",
                "sha256": "5bb65ac3dfa02a59111c354d0c3705e41b875135aad80a03ef65252fa68aa7c8"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp38-cp38-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "f31fcf22569609fe5b08885cb792852f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 344907,
            "upload_time": "2025-07-19T22:37:57",
            "upload_time_iso_8601": "2025-07-19T22:37:57.350234Z",
            "url": "https://files.pythonhosted.org/packages/c1/27/d63e68fbbbdcf66a114c8bd07838054cdfcf7b2ff9708c7a116bfd6fac75/pmmc-0.2.5-cp38-cp38-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "589211cb3897b112e51e2ce8008a0a6b76cc2b3d7ab608781f062a589e9759b6",
                "md5": "6d8bb1d5004410e2e179278c55ec98d3",
                "sha256": "3fbb8a9232ee56bcae538dc886c1a3b3cb704a15591b7de78d0282297e3b5d12"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d8bb1d5004410e2e179278c55ec98d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 746161,
            "upload_time": "2025-07-19T22:34:50",
            "upload_time_iso_8601": "2025-07-19T22:34:50.353293Z",
            "url": "https://files.pythonhosted.org/packages/58/92/11cb3897b112e51e2ce8008a0a6b76cc2b3d7ab608781f062a589e9759b6/pmmc-0.2.5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6aaae3ef41b18733f8397d23c0c3a0e2f1cf31df602ed979f692425cc64796e",
                "md5": "75c7b5b384407e38e9704da2fdbbbc03",
                "sha256": "8c7d68d4c62de17c71b110e11242193953272820b57b20ced5ffb67e706caf52"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "75c7b5b384407e38e9704da2fdbbbc03",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 504895,
            "upload_time": "2025-07-19T22:34:45",
            "upload_time_iso_8601": "2025-07-19T22:34:45.477386Z",
            "url": "https://files.pythonhosted.org/packages/e6/aa/ae3ef41b18733f8397d23c0c3a0e2f1cf31df602ed979f692425cc64796e/pmmc-0.2.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f71188ca7b04c6447d927bd62eec6fe54a5f2c6520c96aaec5acad69571ab723",
                "md5": "3b506288855407c903f35cff4cf4cd89",
                "sha256": "fb5fdc350e0c110e1a528da927e1e67e3d6a9f2586c7a1f69aabf5204959bfc0"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp39-cp39-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b506288855407c903f35cff4cf4cd89",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 187223,
            "upload_time": "2025-07-19T22:38:04",
            "upload_time_iso_8601": "2025-07-19T22:38:04.925400Z",
            "url": "https://files.pythonhosted.org/packages/f7/11/88ca7b04c6447d927bd62eec6fe54a5f2c6520c96aaec5acad69571ab723/pmmc-0.2.5-cp39-cp39-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee548385a6b69a7574752e6430ca27d080b0b7db6921d2953bfbe3bc8d17b015",
                "md5": "16ce980de4067ea31217072b94ad4c35",
                "sha256": "14bde1217d177b691c92204d4b21f7094183057d94fc5a34b10c70a9ce9b5994"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp39-cp39-macosx_14_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "16ce980de4067ea31217072b94ad4c35",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 345210,
            "upload_time": "2025-07-19T22:37:59",
            "upload_time_iso_8601": "2025-07-19T22:37:59.199811Z",
            "url": "https://files.pythonhosted.org/packages/ee/54/8385a6b69a7574752e6430ca27d080b0b7db6921d2953bfbe3bc8d17b015/pmmc-0.2.5-cp39-cp39-macosx_14_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6b29ecc9d6e7fc229cff3d3d025cf1696dec3e107310338e5d719ac3f6985b8",
                "md5": "1e2e3dd173dc9fb357977c796c46ebb2",
                "sha256": "b3ae0304dccb82ad342120e2d4e271346c00b1892ea3687d431cf830bed68c31"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e2e3dd173dc9fb357977c796c46ebb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 746420,
            "upload_time": "2025-07-19T22:34:52",
            "upload_time_iso_8601": "2025-07-19T22:34:52.820795Z",
            "url": "https://files.pythonhosted.org/packages/a6/b2/9ecc9d6e7fc229cff3d3d025cf1696dec3e107310338e5d719ac3f6985b8/pmmc-0.2.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9217215774b3c04f7d154803de68287c11416be6ad9b04444bd7c5403ecbedee",
                "md5": "59f6a1aa93ef5be520ef66eb6aacdea2",
                "sha256": "d81af9fd27e84270315ee3baa134ce4c18055fa2a866ad6b98cdc4516e4d63bb"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "59f6a1aa93ef5be520ef66eb6aacdea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 505009,
            "upload_time": "2025-07-19T22:34:47",
            "upload_time_iso_8601": "2025-07-19T22:34:47.595708Z",
            "url": "https://files.pythonhosted.org/packages/92/17/215774b3c04f7d154803de68287c11416be6ad9b04444bd7c5403ecbedee/pmmc-0.2.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34d9b6b9b94a18ddbc784e4d014a77c714c87a30541e3d32b4b2af7e7a075f39",
                "md5": "321d351109e28eb36f893e1b6cf7c204",
                "sha256": "42655295c75fcf090544a43c600c7eac7f8a4b193ee96bc46a31fc1412506392"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp310-pypy310_pp73-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "321d351109e28eb36f893e1b6cf7c204",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 185671,
            "upload_time": "2025-07-19T22:38:06",
            "upload_time_iso_8601": "2025-07-19T22:38:06.551303Z",
            "url": "https://files.pythonhosted.org/packages/34/d9/b6b9b94a18ddbc784e4d014a77c714c87a30541e3d32b4b2af7e7a075f39/pmmc-0.2.5-pp310-pypy310_pp73-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d2163417716b783596b8554459d801ad3cec463b3dbc31f47fd9ac2ddf78e54",
                "md5": "194e24444217b1c4b1e01a9f23332d8a",
                "sha256": "3627da70728f5043cd19ab57f0567d61cbefdc69938e99b7bff6cd7a2966e659"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp310-pypy310_pp73-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "194e24444217b1c4b1e01a9f23332d8a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 344592,
            "upload_time": "2025-07-19T22:38:00",
            "upload_time_iso_8601": "2025-07-19T22:38:00.583745Z",
            "url": "https://files.pythonhosted.org/packages/4d/21/63417716b783596b8554459d801ad3cec463b3dbc31f47fd9ac2ddf78e54/pmmc-0.2.5-pp310-pypy310_pp73-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a5d3b080f4c705300bc55bed62ef9ca97ca9f440a08d93b3c290be4f4fac6c5",
                "md5": "fd7b5d38c472d64f01a85a23285aebad",
                "sha256": "64881d82872174009808289fe87d978365b7235788768c33cb34feeb6cab949c"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd7b5d38c472d64f01a85a23285aebad",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 745265,
            "upload_time": "2025-07-19T22:34:54",
            "upload_time_iso_8601": "2025-07-19T22:34:54.921533Z",
            "url": "https://files.pythonhosted.org/packages/0a/5d/3b080f4c705300bc55bed62ef9ca97ca9f440a08d93b3c290be4f4fac6c5/pmmc-0.2.5-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "137a92afc16512dc91b0faf42ec739c73a502a1e198ee217f75803c27790d934",
                "md5": "a59a3f1d3150a4e46e485538fbf3e291",
                "sha256": "623710c01231a67731e20767d7b83b33e0e084d4c92e173fb9181f255700ed87"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a59a3f1d3150a4e46e485538fbf3e291",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 506010,
            "upload_time": "2025-07-19T22:34:49",
            "upload_time_iso_8601": "2025-07-19T22:34:49.524724Z",
            "url": "https://files.pythonhosted.org/packages/13/7a/92afc16512dc91b0faf42ec739c73a502a1e198ee217f75803c27790d934/pmmc-0.2.5-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ee5f7236c3c743fc7d796ead51a733f6af2c0ff4a4a66846f87d089bf5853a8",
                "md5": "4a60e48207cdcce25336ef9a904c4ae7",
                "sha256": "3dc92bc41e8053446d7e72ee10428e4bd4192168494df6273233e023c28476db"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a60e48207cdcce25336ef9a904c4ae7",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.6",
            "size": 747316,
            "upload_time": "2025-07-19T22:34:57",
            "upload_time_iso_8601": "2025-07-19T22:34:57.052374Z",
            "url": "https://files.pythonhosted.org/packages/5e/e5/f7236c3c743fc7d796ead51a733f6af2c0ff4a4a66846f87d089bf5853a8/pmmc-0.2.5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6586b6dce508c841bbaf65667d0539160ae51054eec95f38b8c3db69abbc6290",
                "md5": "75c426d337b16b36200f336bb1a60d65",
                "sha256": "b6821dec90e72e68940c6f52a807e90d8561090e3de28e201b113116f8bd3a4b"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp37-pypy37_pp73-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75c426d337b16b36200f336bb1a60d65",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 185185,
            "upload_time": "2025-07-19T22:38:07",
            "upload_time_iso_8601": "2025-07-19T22:38:07.489885Z",
            "url": "https://files.pythonhosted.org/packages/65/86/b6dce508c841bbaf65667d0539160ae51054eec95f38b8c3db69abbc6290/pmmc-0.2.5-pp37-pypy37_pp73-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74e13a40ebd59eb0a28ff350a05d1c176b8516574fdb000d22501868d01434f6",
                "md5": "596554dff4e65fe8db392aa9d39ec4bf",
                "sha256": "caee67fbf22266af43c2344e8854376f9216da330d3359d633a8f2922401f4ac"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "596554dff4e65fe8db392aa9d39ec4bf",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 505157,
            "upload_time": "2025-07-19T22:34:51",
            "upload_time_iso_8601": "2025-07-19T22:34:51.218705Z",
            "url": "https://files.pythonhosted.org/packages/74/e1/3a40ebd59eb0a28ff350a05d1c176b8516574fdb000d22501868d01434f6/pmmc-0.2.5-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "628d2ee17d04619a445c3ba30f70b829e4d350b837b88d4fb6109f3ce2ca190e",
                "md5": "3896167b6c5c0e9b4c21f1cf2957b19e",
                "sha256": "83f185b852cdcb18d71cbc3b8ff9cf175709a9e081547467e9fae3e548760c6f"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp38-pypy38_pp73-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3896167b6c5c0e9b4c21f1cf2957b19e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 185720,
            "upload_time": "2025-07-19T22:38:08",
            "upload_time_iso_8601": "2025-07-19T22:38:08.482495Z",
            "url": "https://files.pythonhosted.org/packages/62/8d/2ee17d04619a445c3ba30f70b829e4d350b837b88d4fb6109f3ce2ca190e/pmmc-0.2.5-pp38-pypy38_pp73-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98e55df6cbc70ede3f6580c549ed0338c27e5b15184c43a6d265350b7616e2c5",
                "md5": "222d5824acfd49fdc6257ae6ba4a54f7",
                "sha256": "4e9d64af6238ffb05374b15790910f88960d0aad6cd1fccc496f8c63de7ffd1e"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp38-pypy38_pp73-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "222d5824acfd49fdc6257ae6ba4a54f7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 344562,
            "upload_time": "2025-07-19T22:38:02",
            "upload_time_iso_8601": "2025-07-19T22:38:02.441795Z",
            "url": "https://files.pythonhosted.org/packages/98/e5/5df6cbc70ede3f6580c549ed0338c27e5b15184c43a6d265350b7616e2c5/pmmc-0.2.5-pp38-pypy38_pp73-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "698b3759baf2277f5c3bf4e9ac782ab7219107a7e9af2a9559d164f39958cff3",
                "md5": "34a970c14783192fa1619fc5a495cdba",
                "sha256": "7ca1012f39a93b468cbd1f3cdd5663ff24b5a8fc29d783d9e231d78df4d2699e"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "34a970c14783192fa1619fc5a495cdba",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 505574,
            "upload_time": "2025-07-19T22:34:53",
            "upload_time_iso_8601": "2025-07-19T22:34:53.921352Z",
            "url": "https://files.pythonhosted.org/packages/69/8b/3759baf2277f5c3bf4e9ac782ab7219107a7e9af2a9559d164f39958cff3/pmmc-0.2.5-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eab52c5e477350739aa27f0b20dae599eeeeb86bae59cdff72dea54a70f4c64b",
                "md5": "7650a97ac068fbc430e3db863056a137",
                "sha256": "a67ede0724f614748d502c5dd8df82cfb6bb2dbba3e52abfbbb7870eda7bb0ff"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp39-pypy39_pp73-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7650a97ac068fbc430e3db863056a137",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 185618,
            "upload_time": "2025-07-19T22:38:09",
            "upload_time_iso_8601": "2025-07-19T22:38:09.382905Z",
            "url": "https://files.pythonhosted.org/packages/ea/b5/2c5e477350739aa27f0b20dae599eeeeb86bae59cdff72dea54a70f4c64b/pmmc-0.2.5-pp39-pypy39_pp73-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d74524e66740004a751e6c4534ee38b328d686779a09121f7a8aa4648249889e",
                "md5": "232e83a935215fec17b1e622201887fc",
                "sha256": "baf100ffd555e9c5a811f9b6cb4b762b0b7d7c2995f679de51fed1095dcedd4c"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp39-pypy39_pp73-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "232e83a935215fec17b1e622201887fc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 344556,
            "upload_time": "2025-07-19T22:38:04",
            "upload_time_iso_8601": "2025-07-19T22:38:04.241504Z",
            "url": "https://files.pythonhosted.org/packages/d7/45/24e66740004a751e6c4534ee38b328d686779a09121f7a8aa4648249889e/pmmc-0.2.5-pp39-pypy39_pp73-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ea76c1916219c69cd2e5613b5f0ac76bf4c6888a24448ab99d017377b258ebd",
                "md5": "ff84270404b8e0aaf22d58d25285bfe7",
                "sha256": "42117f5b7c009d7ed0d61fa89b8553b9f5b957f716334b67647a27821a4400ec"
            },
            "downloads": -1,
            "filename": "pmmc-0.2.5-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff84270404b8e0aaf22d58d25285bfe7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 505935,
            "upload_time": "2025-07-19T22:34:55",
            "upload_time_iso_8601": "2025-07-19T22:34:55.916667Z",
            "url": "https://files.pythonhosted.org/packages/9e/a7/6c1916219c69cd2e5613b5f0ac76bf4c6888a24448ab99d017377b258ebd/pmmc-0.2.5-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-19 22:37:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fangq",
    "github_project": "mmc",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pmmc"
}
        
Elapsed time: 1.50178s