pmcx


Namepmcx JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://github.com/fangq/mcx
SummaryPython bindings for Monte Carlo eXtreme photon transport simulator
upload_time2024-03-15 04:25:16
maintainerQianqian Fang
docs_urlNone
authorMatin Raayai Ardakani, Qianqian Fang, Fan-Yu Yen
requires_python>=3.6
licenseGPLv3+
keywords monte carlo simulation biophotonics ray-tracing rendering gpu modeling biomedical optics tissue optics simulator optics nvidia cuda
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ![](https://mcx.space/img/mcx18_banner.png)

# PMCX - Python bindings for Monte Carlo eXtreme photon transport simulator

- Copyright: (C) Matin Raayai Ardakani (2022-2023) <raayaiardakani.m at northeastern.edu>, Qianqian Fang (2019-2024) <q.fang at neu.edu>, Fan-Yu Yen (2023-2024) <yen.f at northeastern.edu>
- License: GNU Public License V3 or later
- Version: 0.3.3
- URL: https://pypi.org/project/pmcx/
- Github: https://github.com/fangq/mcx

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

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

Monte Carlo eXtreme (MCX) is a fast photon transport simulation software for 3D 
heterogeneous turbid media. By taking advantage of the massively parallel 
threads and extremely low memory latency in a modern graphics processing unit 
(GPU), MCX is capable of performing Monte Carlo (MC) photon simulations at a 
blazing speed, typically hundreds to a thousand times faster than a fully 
optimized CPU-based MC implementation.

## How to Install

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

## Runtime Dependencies
* **NVIDIA GPU Driver**: A CUDA-capable NVIDIA GPU and driver is required to run MCX. An up-to-date driver is recommended.
The binary wheel distributed over pip runs on NVIDIA drivers with CUDA 10.1 support on Windows, CUDA 9.2 support on Linux, and
CUDA 10.2 support on macOS, respectively. For more details on driver versions and their CUDA support, see the 
[CUDA Release Notes](https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html). 
To download the latest driver for your system, see the 
[NVIDIA Driver Download Page](https://www.nvidia.com/download/index.aspx).
**You shouldn't need to have CUDA toolkit installed**. MCX is built with the static CUDA runtime library. 
* **Python**: Python 3.6 and newer is required. **Python 2 is not supported**.
* **numpy**: Used to pass/receive volumetric information to/from pmcx. To install, use either conda or pip 
package managers: `pip install numpy` or `conda install numpy`
* (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**: Windows and Linux are fully supported; For building MCX on macOS, OSX 10.13 (High Sierra) and 
older are highly recommended since 10.13 was the last version of macOS with NVIDIA CUDA support, and matching the CUDA 
compiler version with the C/C++ compiler shipped with Xcode is easier. Newer macOS versions can be used for building MCX, 
but need to have System Integrity Protection disabled prior to installing the CUDA toolkit due to the NVIDIA installer copying
its payload under the ```/Developer``` directory under root.
* **NVIDIA CUDA Toolkit**: CUDA 7.5 or newer is required. On macOS, 10.2 is the last available CUDA version.
For details on how to install CUDA, see the [CUDA Download Page](https://developer.nvidia.com/cuda-downloads). 
The NVIDIA GPU driver of the target system must support the selected CUDA toolkit.
* **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**: CUDA Toolkit supports only the following compilers:
  * GNU GCC for Linux-based distributions.
  * Microsoft Visual Studio C/C++ Compiler for Windows.
  * Apple Clang for macOS, available via Xcode. The last Xcode version supported by CUDA 10.2 is 10.3. If using an OSX 
  version higher than 10.15 it can be downloaded and installed from [Apple's Developer Website](https://developer.apple.com/download/) 
  with an Apple ID. After installation, select the proper Xcode version from the commandline, and set the ```SDKROOT```
  environment variable:
    ```zsh
    sudo xcode-select -s /Applications/Xcode_10.3.app/Contents/Developer/
    export SDKROOT=/Applications/Xcode_10.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
    ```
  
  Refer to each OS's online documentations for more in-depth information on how to install these compilers.
  Note that the version of the C/C++ compiler used must be supported by the CUDA toolkit version. If not, compilation
  will fail with an error notifying you of this problem. See the [CUDA Installation Guides](https://developer.nvidia.com/cuda-toolkit-archive)
  for more details.
* **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:
  ```zsh
    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.
  Additionally, on Windows, make sure **Visual Studio's C++ CMake tools for Windows** is also installed by selecting its option
  during installation.

### Build Steps
1. Ensure that ```cmake```, ```nvcc``` (NVIDIA CUDA Compiler) 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 ```pmcx/``` folder:
    ```bash
        git clone --recursive https://github.com/fangq/mcx.git
        cd mcx/pmcx
    ```

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 `pmcx-X.X.X-cpXX-cpXX-*.whl`
stored inside the `mcx/pmcx` folder. You can install this wheel package using `python3 -m pip install --force-reinstall pmcx-*.whl`
to force installing this locally compiled `pmcx` module and overwrite any previously installed versions.


## How to use

The PMCX module is easy to use. You can use the `pmcx.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 MCX simulation setting as positional
argument. The supported setting names are compatible to nearly all the input fields
for the MATLAB version of MCX - [MCXLAB](https://github.com/fangq/mcx/blob/master/mcxlab/mcxlab.m))

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

res = pmcx.run(nphoton=1000000, vol=np.ones([60, 60, 60], dtype='uint8'), 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,:, :]))
plt.show()
```

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

```python3
import pmcx
import numpy as np
cfg = {'nphoton': 1000000, 'vol':np.ones([60,60,60],dtype='uint8'), '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 = pmcx.run(cfg)      # pmcx.run returns detected photon data as a concatenated 2D array res['detp'], same for res['traj']
# or alternatively/preferably
res = pmcx.mcxlab(cfg)   # pmcx.mcxlab calls pmcx.run, and postprocess res['detp'] and res['traj'] raw data into dict form
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/fangq/mcx",
    "name": "pmcx",
    "maintainer": "Qianqian Fang",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "Monte Carlo simulation,Biophotonics,Ray-tracing,Rendering,GPU,Modeling,Biomedical Optics,Tissue Optics,Simulator,Optics,NVIDIA,CUDA",
    "author": "Matin Raayai Ardakani, Qianqian Fang, Fan-Yu Yen",
    "author_email": "raayaiardakani.m@northeastern.edu, q.fang@neu.edu, yen.f@northeastern.edu",
    "download_url": "https://mcx.space",
    "platform": null,
    "description": "![](https://mcx.space/img/mcx18_banner.png)\r\n\r\n# PMCX - Python bindings for Monte Carlo eXtreme photon transport simulator\r\n\r\n- Copyright: (C) Matin Raayai Ardakani (2022-2023) <raayaiardakani.m at northeastern.edu>, Qianqian Fang (2019-2024) <q.fang at neu.edu>, Fan-Yu Yen (2023-2024) <yen.f at northeastern.edu>\r\n- License: GNU Public License V3 or later\r\n- Version: 0.3.3\r\n- URL: https://pypi.org/project/pmcx/\r\n- Github: https://github.com/fangq/mcx\r\n\r\n![Linux Python Module](https://github.com/fangq/mcx/actions/workflows/build_linux_manywheel.yml/badge.svg)\\\r\n![MacOS Python Module](https://github.com/fangq/mcx/actions/workflows/build_macos_wheel.yml/badge.svg)\\\r\n![Windows Python Module](https://github.com/fangq/mcx/actions/workflows/build_windows_wheel.yml/badge.svg)\r\n\r\nThis module provides a Python binding for Monte Carlo eXtreme (MCX).\r\nFor other binaries, including the standalone executable and the MATLAB bindings, see [our website](http://mcx.space).\r\n\r\nMonte Carlo eXtreme (MCX) is a fast photon transport simulation software for 3D \r\nheterogeneous turbid media. By taking advantage of the massively parallel \r\nthreads and extremely low memory latency in a modern graphics processing unit \r\n(GPU), MCX is capable of performing Monte Carlo (MC) photon simulations at a \r\nblazing speed, typically hundreds to a thousand times faster than a fully \r\noptimized CPU-based MC implementation.\r\n\r\n## How to Install\r\n\r\n* PIP: ```pip install pmcx``` see https://pypi.org/project/pmcx/\r\n\r\n## Runtime Dependencies\r\n* **NVIDIA GPU Driver**: A CUDA-capable NVIDIA GPU and driver is required to run MCX. An up-to-date driver is recommended.\r\nThe binary wheel distributed over pip runs on NVIDIA drivers with CUDA 10.1 support on Windows, CUDA 9.2 support on Linux, and\r\nCUDA 10.2 support on macOS, respectively. For more details on driver versions and their CUDA support, see the \r\n[CUDA Release Notes](https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html). \r\nTo download the latest driver for your system, see the \r\n[NVIDIA Driver Download Page](https://www.nvidia.com/download/index.aspx).\r\n**You shouldn't need to have CUDA toolkit installed**. MCX is built with the static CUDA runtime library. \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 pmcx. To install, use either conda or pip \r\npackage managers: `pip install numpy` or `conda install numpy`\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**: Windows and Linux are fully supported; For building MCX on macOS, OSX 10.13 (High Sierra) and \r\nolder are highly recommended since 10.13 was the last version of macOS with NVIDIA CUDA support, and matching the CUDA \r\ncompiler version with the C/C++ compiler shipped with Xcode is easier. Newer macOS versions can be used for building MCX, \r\nbut need to have System Integrity Protection disabled prior to installing the CUDA toolkit due to the NVIDIA installer copying\r\nits payload under the ```/Developer``` directory under root.\r\n* **NVIDIA CUDA Toolkit**: CUDA 7.5 or newer is required. On macOS, 10.2 is the last available CUDA version.\r\nFor details on how to install CUDA, see the [CUDA Download Page](https://developer.nvidia.com/cuda-downloads). \r\nThe NVIDIA GPU driver of the target system must support the selected CUDA toolkit.\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**: CUDA Toolkit supports only the following compilers:\r\n  * GNU GCC for Linux-based distributions.\r\n  * Microsoft Visual Studio C/C++ Compiler for Windows.\r\n  * Apple Clang for macOS, available via Xcode. The last Xcode version supported by CUDA 10.2 is 10.3. If using an OSX \r\n  version higher than 10.15 it can be downloaded and installed from [Apple's Developer Website](https://developer.apple.com/download/) \r\n  with an Apple ID. After installation, select the proper Xcode version from the commandline, and set the ```SDKROOT```\r\n  environment variable:\r\n    ```zsh\r\n    sudo xcode-select -s /Applications/Xcode_10.3.app/Contents/Developer/\r\n    export SDKROOT=/Applications/Xcode_10.3.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk\r\n    ```\r\n  \r\n  Refer to each OS's online documentations for more in-depth information on how to install these compilers.\r\n  Note that the version of the C/C++ compiler used must be supported by the CUDA toolkit version. If not, compilation\r\n  will fail with an error notifying you of this problem. See the [CUDA Installation Guides](https://developer.nvidia.com/cuda-toolkit-archive)\r\n  for more details.\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  ```zsh\r\n    brew install libomp\r\n    brew link --force libomp\r\n  ```\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  Additionally, on Windows, make sure **Visual Studio's C++ CMake tools for Windows** is also installed by selecting its option\r\n  during installation.\r\n\r\n### Build Steps\r\n1. Ensure that ```cmake```, ```nvcc``` (NVIDIA CUDA Compiler) 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 ```pmcx/``` folder:\r\n    ```bash\r\n        git clone --recursive https://github.com/fangq/mcx.git\r\n        cd mcx/pmcx\r\n    ```\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 `pmcx-X.X.X-cpXX-cpXX-*.whl`\r\nstored inside the `mcx/pmcx` folder. You can install this wheel package using `python3 -m pip install --force-reinstall pmcx-*.whl`\r\nto force installing this locally compiled `pmcx` module and overwrite any previously installed versions.\r\n\r\n\r\n## How to use\r\n\r\nThe PMCX module is easy to use. You can use the `pmcx.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 MCX simulation setting as positional\r\nargument. The supported setting names are compatible to nearly all the input fields\r\nfor the MATLAB version of MCX - [MCXLAB](https://github.com/fangq/mcx/blob/master/mcxlab/mcxlab.m))\r\n\r\n```python3\r\nimport pmcx\r\nimport numpy as np\r\nimport matplotlib.pyplot as plt\r\n\r\nres = pmcx.run(nphoton=1000000, vol=np.ones([60, 60, 60], dtype='uint8'), 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,:, :]))\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 `pmcx.run()`, or preferably, `pmcx.mcxlab()`\r\n\r\n```python3\r\nimport pmcx\r\nimport numpy as np\r\ncfg = {'nphoton': 1000000, 'vol':np.ones([60,60,60],dtype='uint8'), '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 = pmcx.run(cfg)      # pmcx.run returns detected photon data as a concatenated 2D array res['detp'], same for res['traj']\r\n# or alternatively/preferably\r\nres = pmcx.mcxlab(cfg)   # pmcx.mcxlab calls pmcx.run, and postprocess res['detp'] and res['traj'] raw data into dict form\r\n```\r\n",
    "bugtrack_url": null,
    "license": "GPLv3+",
    "summary": "Python bindings for Monte Carlo eXtreme photon transport simulator",
    "version": "0.3.3",
    "project_urls": {
        "Download": "https://mcx.space",
        "Homepage": "https://github.com/fangq/mcx"
    },
    "split_keywords": [
        "monte carlo simulation",
        "biophotonics",
        "ray-tracing",
        "rendering",
        "gpu",
        "modeling",
        "biomedical optics",
        "tissue optics",
        "simulator",
        "optics",
        "nvidia",
        "cuda"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab41683ab744ca8bbb30345898dfc198db4946c16fa5c6fd5148789c883fcd18",
                "md5": "9d511371289d8f6a7ac0e4296c1b3579",
                "sha256": "24758f7fc6310593997101c578fe233e98c223ca9ce26639c1991b8a3baa9c19"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d511371289d8f6a7ac0e4296c1b3579",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 4745555,
            "upload_time": "2024-03-15T04:25:16",
            "upload_time_iso_8601": "2024-03-15T04:25:16.593926Z",
            "url": "https://files.pythonhosted.org/packages/ab/41/683ab744ca8bbb30345898dfc198db4946c16fa5c6fd5148789c883fcd18/pmcx-0.3.3-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e1e72c030b73a5c0b78fd80da4937257afb4708b4c740cae3ca3e3d2a49bf48",
                "md5": "0fa31eb8f81fd879194ff1866871e549",
                "sha256": "16f14bd2194a76199403f34b7dcad4245e1af67f6996a386bb36b2218ddeabbc"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fa31eb8f81fd879194ff1866871e549",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 4829932,
            "upload_time": "2024-03-15T04:25:45",
            "upload_time_iso_8601": "2024-03-15T04:25:45.513189Z",
            "url": "https://files.pythonhosted.org/packages/2e/1e/72c030b73a5c0b78fd80da4937257afb4708b4c740cae3ca3e3d2a49bf48/pmcx-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3434d09041483d59b685d6e7481635206783592e8bf8ae66c2098e46893311e",
                "md5": "e7115470cf0e5b80ac432676d57760d5",
                "sha256": "b271299ad7183a3a4d61c457eb74a7402abd97122a3c168b521a786e5803558a"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e7115470cf0e5b80ac432676d57760d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 4326613,
            "upload_time": "2024-03-15T04:12:55",
            "upload_time_iso_8601": "2024-03-15T04:12:55.748837Z",
            "url": "https://files.pythonhosted.org/packages/d3/43/4d09041483d59b685d6e7481635206783592e8bf8ae66c2098e46893311e/pmcx-0.3.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ece37b1b4931f85ba022de2648f4f649fdc0a0294499c739158014807b7d3655",
                "md5": "2b319805f92224687d86ba9204fe75ad",
                "sha256": "bdcd496121c9b39848e0a9733835ee696edfa354ea59b4c2a10ebcf7d6cc4ac4"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp311-cp311-macosx_10_16_universal2.whl",
            "has_sig": false,
            "md5_digest": "2b319805f92224687d86ba9204fe75ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 4747361,
            "upload_time": "2024-03-15T04:25:19",
            "upload_time_iso_8601": "2024-03-15T04:25:19.191308Z",
            "url": "https://files.pythonhosted.org/packages/ec/e3/7b1b4931f85ba022de2648f4f649fdc0a0294499c739158014807b7d3655/pmcx-0.3.3-cp311-cp311-macosx_10_16_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9af11704e2a73fbbbee50c25240b4a723cf9d71124e94ab03fe769239a093b79",
                "md5": "df33e887936d8d8144e242229bc0152c",
                "sha256": "be25d58a29085bb0c94edffae8ebe76507e49737212d34f1a4e2ec14ac7f4746"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df33e887936d8d8144e242229bc0152c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 4831324,
            "upload_time": "2024-03-15T04:25:47",
            "upload_time_iso_8601": "2024-03-15T04:25:47.874438Z",
            "url": "https://files.pythonhosted.org/packages/9a/f1/1704e2a73fbbbee50c25240b4a723cf9d71124e94ab03fe769239a093b79/pmcx-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcf8a692c2cc4870fe55b387c1597c79968a33b6c22ec0906ec81514a140aae0",
                "md5": "f7bb7eb756f54e1fac5565ff635c828d",
                "sha256": "3a27ce360b24064beed251c9b2b4c30c63b1a2b883af569a709d7cac6446a80f"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f7bb7eb756f54e1fac5565ff635c828d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 4327329,
            "upload_time": "2024-03-15T04:12:57",
            "upload_time_iso_8601": "2024-03-15T04:12:57.768776Z",
            "url": "https://files.pythonhosted.org/packages/bc/f8/a692c2cc4870fe55b387c1597c79968a33b6c22ec0906ec81514a140aae0/pmcx-0.3.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9125bc1c3c732b5a1e014287ff4f8d9a3fb07bd1341fb0fa22ff44bb2e379d43",
                "md5": "ce2e7ef9f924315c5d90a2f395024116",
                "sha256": "c886b7290dc05c8e29c9d9d3e7213cdb89651a6039efee1a7a686c50aec69de5"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp312-cp312-macosx_10_16_universal2.whl",
            "has_sig": false,
            "md5_digest": "ce2e7ef9f924315c5d90a2f395024116",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 4747177,
            "upload_time": "2024-03-15T04:25:21",
            "upload_time_iso_8601": "2024-03-15T04:25:21.566550Z",
            "url": "https://files.pythonhosted.org/packages/91/25/bc1c3c732b5a1e014287ff4f8d9a3fb07bd1341fb0fa22ff44bb2e379d43/pmcx-0.3.3-cp312-cp312-macosx_10_16_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe4ffc124c86406066d2eb8a5fa5a2bc127df5e037d8ec42c866ccd043fbfd10",
                "md5": "b3bae6d9cb9020f69cfbca19952b5243",
                "sha256": "7437686152b3d6f6793481fc98a29ee35c1df5fdaaddb462a230c8509acc8f3e"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3bae6d9cb9020f69cfbca19952b5243",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 4830189,
            "upload_time": "2024-03-15T04:25:50",
            "upload_time_iso_8601": "2024-03-15T04:25:50.427523Z",
            "url": "https://files.pythonhosted.org/packages/fe/4f/fc124c86406066d2eb8a5fa5a2bc127df5e037d8ec42c866ccd043fbfd10/pmcx-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11be2bf845aababc95aaebe13cff9292d52b4f427d5c1a7fab3b6be937040669",
                "md5": "baf32e02e36f2aabed6cfe8d6f08be0e",
                "sha256": "916f86d9b77c5685b6e08168d127073f6be69edeb00c81b2fbe8b4dfa22b261d"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "baf32e02e36f2aabed6cfe8d6f08be0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 4329217,
            "upload_time": "2024-03-15T04:13:00",
            "upload_time_iso_8601": "2024-03-15T04:13:00.551666Z",
            "url": "https://files.pythonhosted.org/packages/11/be/2bf845aababc95aaebe13cff9292d52b4f427d5c1a7fab3b6be937040669/pmcx-0.3.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2207c7f1ad5664bb22c088cd76cd31e8a90d3eb1e12f63dbc09931045b68b1ec",
                "md5": "d4525698d66b694f5381774cd7c45ef4",
                "sha256": "aea48f272f2829b10af87273470493be43551d658880e3b74b6ecd48aeef5670"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp36-cp36m-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4525698d66b694f5381774cd7c45ef4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 4743595,
            "upload_time": "2024-03-15T04:25:23",
            "upload_time_iso_8601": "2024-03-15T04:25:23.855819Z",
            "url": "https://files.pythonhosted.org/packages/22/07/c7f1ad5664bb22c088cd76cd31e8a90d3eb1e12f63dbc09931045b68b1ec/pmcx-0.3.3-cp36-cp36m-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e35d3d3187c1d9ee55a23e56352d8a00eca7863b782638bff72243fbce097f80",
                "md5": "6d97ee5e2ea58a8379fe3bd68b908124",
                "sha256": "f08465022455e4f7025a98a9200a7f3a5734ac307f512ae834a5c2e066bc0e8c"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d97ee5e2ea58a8379fe3bd68b908124",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 4827933,
            "upload_time": "2024-03-15T04:25:52",
            "upload_time_iso_8601": "2024-03-15T04:25:52.184555Z",
            "url": "https://files.pythonhosted.org/packages/e3/5d/3d3187c1d9ee55a23e56352d8a00eca7863b782638bff72243fbce097f80/pmcx-0.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3af2567862b896678a337be44b14e23c7eaff20a9790c4a8fc0aecc3a3fb5aa",
                "md5": "b32a5eb6141fe7c27bf053f38d765cef",
                "sha256": "d8576bc338d0c049949b4067ef5d5f6d9b795f19aff3d57a405e653cd94cb578"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b32a5eb6141fe7c27bf053f38d765cef",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 4329335,
            "upload_time": "2024-03-15T04:13:02",
            "upload_time_iso_8601": "2024-03-15T04:13:02.839641Z",
            "url": "https://files.pythonhosted.org/packages/d3/af/2567862b896678a337be44b14e23c7eaff20a9790c4a8fc0aecc3a3fb5aa/pmcx-0.3.3-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c54f1887335263f0651a989aa7fade61588961980facc16b0ee58fe7f989ad92",
                "md5": "6d8a0a638a9aee0109e2e9b5a2c619dd",
                "sha256": "278db6a4f0b0d015f3b2488ca4beb8b7d1f3bf5be066e1ddfd73ad3847625a16"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d8a0a638a9aee0109e2e9b5a2c619dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 4743597,
            "upload_time": "2024-03-15T04:25:25",
            "upload_time_iso_8601": "2024-03-15T04:25:25.519307Z",
            "url": "https://files.pythonhosted.org/packages/c5/4f/1887335263f0651a989aa7fade61588961980facc16b0ee58fe7f989ad92/pmcx-0.3.3-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40adc24b49bbc9dfd5d24a79fbc5fdffc4136d30c02d51f4025417a334955627",
                "md5": "4872e6528d8e05fa88b266f1584fc9dc",
                "sha256": "ae1705ce7f43a4911b72e29be7d8000d6c2df1ffe890221d154236974234df0b"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4872e6528d8e05fa88b266f1584fc9dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 4828199,
            "upload_time": "2024-03-15T04:25:53",
            "upload_time_iso_8601": "2024-03-15T04:25:53.920471Z",
            "url": "https://files.pythonhosted.org/packages/40/ad/c24b49bbc9dfd5d24a79fbc5fdffc4136d30c02d51f4025417a334955627/pmcx-0.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bec1c18159ff5fe3abab476076b3c727550863911ff7305eb42fa22986decdba",
                "md5": "c705ef864fa11f39ebd8b4de7f607303",
                "sha256": "90e8cbe5eb30964468539d061c96403ab6c233b590d5b1dbc968748212736e81"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c705ef864fa11f39ebd8b4de7f607303",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 4329381,
            "upload_time": "2024-03-15T04:13:04",
            "upload_time_iso_8601": "2024-03-15T04:13:04.996555Z",
            "url": "https://files.pythonhosted.org/packages/be/c1/c18159ff5fe3abab476076b3c727550863911ff7305eb42fa22986decdba/pmcx-0.3.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc792b6fcfbe18b5c6448bdf6f4e96dfbdaba46c50a12324d4c76c16160e78ee",
                "md5": "cb6b4b353ee0b8235f24a55268ebe3b8",
                "sha256": "1fcaa15aafa32660c39bdf0ff09f534d2b0005afe3255365d2bd8472728d657f"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb6b4b353ee0b8235f24a55268ebe3b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 4745510,
            "upload_time": "2024-03-15T04:25:28",
            "upload_time_iso_8601": "2024-03-15T04:25:28.058151Z",
            "url": "https://files.pythonhosted.org/packages/bc/79/2b6fcfbe18b5c6448bdf6f4e96dfbdaba46c50a12324d4c76c16160e78ee/pmcx-0.3.3-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "995280720e92c1da263befb39da1169315d832e16a6a71c74159a60f2f801131",
                "md5": "7769ab777304a6449109a53ae2c1ed3c",
                "sha256": "f9cc9a527fa1898885dc0661777d447bf910d4c7d67093864adca1597db336ef"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7769ab777304a6449109a53ae2c1ed3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 4829849,
            "upload_time": "2024-03-15T04:25:55",
            "upload_time_iso_8601": "2024-03-15T04:25:55.622021Z",
            "url": "https://files.pythonhosted.org/packages/99/52/80720e92c1da263befb39da1169315d832e16a6a71c74159a60f2f801131/pmcx-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38e6adad7910de3e6c2fef04dd1da20236d4f3838e06d5ccdd525093b3955ce4",
                "md5": "fe0d66a2a42e18ef16bb427dd2ba4560",
                "sha256": "8adfb952b8fef55da961a3e8073a115913ce6b3c874724c2281f39b32f137299"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fe0d66a2a42e18ef16bb427dd2ba4560",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 4326528,
            "upload_time": "2024-03-15T04:13:07",
            "upload_time_iso_8601": "2024-03-15T04:13:07.219097Z",
            "url": "https://files.pythonhosted.org/packages/38/e6/adad7910de3e6c2fef04dd1da20236d4f3838e06d5ccdd525093b3955ce4/pmcx-0.3.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9299898ba6c3566d5c7f95bd0bcc9a362aeab8a5235a0b90632605ea30511a2a",
                "md5": "e242d9957850ebbe664d3bea8d8b883a",
                "sha256": "738a693de627769ae9fdbfc3e42e072298d71103e931c9dd0d034709ccc0197e"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e242d9957850ebbe664d3bea8d8b883a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 4745708,
            "upload_time": "2024-03-15T04:25:30",
            "upload_time_iso_8601": "2024-03-15T04:25:30.420574Z",
            "url": "https://files.pythonhosted.org/packages/92/99/898ba6c3566d5c7f95bd0bcc9a362aeab8a5235a0b90632605ea30511a2a/pmcx-0.3.3-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c16660d19b9d186a80b0ae32a276fad86561a68ed1d2287a86f78d7fa2564cf",
                "md5": "43c07000bf296a564978311b47ff14f4",
                "sha256": "70e0a6123d04c4a1cb283e69ee3d587e4952955e92c1a25e439602f168190e0c"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43c07000bf296a564978311b47ff14f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 4829812,
            "upload_time": "2024-03-15T04:25:57",
            "upload_time_iso_8601": "2024-03-15T04:25:57.972881Z",
            "url": "https://files.pythonhosted.org/packages/7c/16/660d19b9d186a80b0ae32a276fad86561a68ed1d2287a86f78d7fa2564cf/pmcx-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e83b7ba501b70f24adb755d8e9efcd39344a00ca9e16b53712e10c5f208f3e4",
                "md5": "9d86f8fddf8ef6c1af7613f1c9a9d537",
                "sha256": "cd9e16c6a94d2826f5ebd2fc80b1da48962fb1ae2760e64a565e54f59fd47cde"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9d86f8fddf8ef6c1af7613f1c9a9d537",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 4325997,
            "upload_time": "2024-03-15T04:13:09",
            "upload_time_iso_8601": "2024-03-15T04:13:09.420115Z",
            "url": "https://files.pythonhosted.org/packages/1e/83/b7ba501b70f24adb755d8e9efcd39344a00ca9e16b53712e10c5f208f3e4/pmcx-0.3.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c933cd6be021a785d895f99068276c8648fb43ba97ee14ecaa37072f28e00c6",
                "md5": "64d2e2a6bbe7a1b1e2c65ae7bf3ca62f",
                "sha256": "6693b27e401109646e2a2bc82ed1b704cd01a8351b1d0d00660659eaf78c6a76"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64d2e2a6bbe7a1b1e2c65ae7bf3ca62f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 4829454,
            "upload_time": "2024-03-15T04:26:00",
            "upload_time_iso_8601": "2024-03-15T04:26:00.315717Z",
            "url": "https://files.pythonhosted.org/packages/0c/93/3cd6be021a785d895f99068276c8648fb43ba97ee14ecaa37072f28e00c6/pmcx-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b7a93c6d2ea6c0ed1c615f3cf6812f6c30677b6e2ea45c8deae208845ab20f5",
                "md5": "059d6816a79ab12708dfab592c16acc1",
                "sha256": "5c64033d6a8e163c3fc98efa7d130948f323c5b01690a06e2ed66b7f861f4db3"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp37-pypy37_pp73-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "059d6816a79ab12708dfab592c16acc1",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 4744590,
            "upload_time": "2024-03-15T04:25:32",
            "upload_time_iso_8601": "2024-03-15T04:25:32.872704Z",
            "url": "https://files.pythonhosted.org/packages/8b/7a/93c6d2ea6c0ed1c615f3cf6812f6c30677b6e2ea45c8deae208845ab20f5/pmcx-0.3.3-pp37-pypy37_pp73-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "944048840f50f8d53a5d10fd88ba4ed1a9efb55e2d6a9b24d35fd66526a1c389",
                "md5": "01cfcef7d312de978467c3924fb874f6",
                "sha256": "fcc19f33776564d13a98a472c02d862adc31a6883b6319376a58d667b73fddb0"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01cfcef7d312de978467c3924fb874f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 4829053,
            "upload_time": "2024-03-15T04:26:02",
            "upload_time_iso_8601": "2024-03-15T04:26:02.231599Z",
            "url": "https://files.pythonhosted.org/packages/94/40/48840f50f8d53a5d10fd88ba4ed1a9efb55e2d6a9b24d35fd66526a1c389/pmcx-0.3.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf86ab9d3387b197ba827113afc8bf3b2b5870d1e936d0553ab0e19d8c0f5166",
                "md5": "db1e03c2d2cc8620222833d996de859d",
                "sha256": "dcd0fb5fbcb5d07157010ebd9d077f54ea3720de6e8a10118ee3c01f2fca57aa"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "db1e03c2d2cc8620222833d996de859d",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 4327499,
            "upload_time": "2024-03-15T04:13:10",
            "upload_time_iso_8601": "2024-03-15T04:13:10.891032Z",
            "url": "https://files.pythonhosted.org/packages/bf/86/ab9d3387b197ba827113afc8bf3b2b5870d1e936d0553ab0e19d8c0f5166/pmcx-0.3.3-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "483aab99a60886190121701b9fd41cc702bcce26bcc5f0a04401c764da5f887c",
                "md5": "1c9d089d857477bc12c42ca57f94bfd2",
                "sha256": "386621bfc461fe2b3f8276dbdf7d1575eefae960a6feb8c95a4588ede8d446c0"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp38-pypy38_pp73-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c9d089d857477bc12c42ca57f94bfd2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 4745363,
            "upload_time": "2024-03-15T04:25:35",
            "upload_time_iso_8601": "2024-03-15T04:25:35.212277Z",
            "url": "https://files.pythonhosted.org/packages/48/3a/ab99a60886190121701b9fd41cc702bcce26bcc5f0a04401c764da5f887c/pmcx-0.3.3-pp38-pypy38_pp73-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b523a2752bbc4f47881c6c292358689584a16c5f894449b9c58731304f7ff74",
                "md5": "749edb05eb26b1d0a46ce92c8a6b390c",
                "sha256": "9fe6d8064238e6fa822d161a7c74d0b44fe460a0d4625c9702c239bedbba5bcc"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "749edb05eb26b1d0a46ce92c8a6b390c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 4829532,
            "upload_time": "2024-03-15T04:26:04",
            "upload_time_iso_8601": "2024-03-15T04:26:04.636883Z",
            "url": "https://files.pythonhosted.org/packages/5b/52/3a2752bbc4f47881c6c292358689584a16c5f894449b9c58731304f7ff74/pmcx-0.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c884ae48db9ffe4550d10b55aa0c37e94191fa68d48e20f0e5cf87d9b13b06f",
                "md5": "51a46da561d5481c52780a8051c43ab7",
                "sha256": "70c701647521aac4673575c51b9c5b337a76365f632e858494befe532b4e84d2"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51a46da561d5481c52780a8051c43ab7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 4328004,
            "upload_time": "2024-03-15T04:13:13",
            "upload_time_iso_8601": "2024-03-15T04:13:13.080747Z",
            "url": "https://files.pythonhosted.org/packages/1c/88/4ae48db9ffe4550d10b55aa0c37e94191fa68d48e20f0e5cf87d9b13b06f/pmcx-0.3.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf797da34c496a192bb4a4b4b41d6cfc34eb60bc3126bcbb57251484f2d11c3a",
                "md5": "b1db7648bb7f40cdde5148b61a5e4e08",
                "sha256": "91171078ce574d35fdb2a929df3e0fae7602fa7eec705e3ed34c70c369167477"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp39-pypy39_pp73-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1db7648bb7f40cdde5148b61a5e4e08",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 4745038,
            "upload_time": "2024-03-15T04:25:37",
            "upload_time_iso_8601": "2024-03-15T04:25:37.650989Z",
            "url": "https://files.pythonhosted.org/packages/cf/79/7da34c496a192bb4a4b4b41d6cfc34eb60bc3126bcbb57251484f2d11c3a/pmcx-0.3.3-pp39-pypy39_pp73-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2559daac4f2aac31ffb46d8416014ec7cb82f44b6d8886446388c7fff1081a2",
                "md5": "4737544d9392783babcf06ef8791cabb",
                "sha256": "2b0f08f4b9960aca78dc086a86e75a3e8ce0d471b1b63d0ee502c79da900f6b0"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4737544d9392783babcf06ef8791cabb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 4829400,
            "upload_time": "2024-03-15T04:26:06",
            "upload_time_iso_8601": "2024-03-15T04:26:06.385544Z",
            "url": "https://files.pythonhosted.org/packages/d2/55/9daac4f2aac31ffb46d8416014ec7cb82f44b6d8886446388c7fff1081a2/pmcx-0.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7f3b66ea7f2a8da4c86dde8cd84b79d5dedd71e73bbef88600b606df13eef35",
                "md5": "23de341184a9a0a592a2ac9111a1d0c6",
                "sha256": "23370b3e7579ab8be3cdec4c155e10fd6d77780843e9ed7a9fd8f59fd09dff1b"
            },
            "downloads": -1,
            "filename": "pmcx-0.3.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "23de341184a9a0a592a2ac9111a1d0c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 4326696,
            "upload_time": "2024-03-15T04:13:15",
            "upload_time_iso_8601": "2024-03-15T04:13:15.351966Z",
            "url": "https://files.pythonhosted.org/packages/e7/f3/b66ea7f2a8da4c86dde8cd84b79d5dedd71e73bbef88600b606df13eef35/pmcx-0.3.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-15 04:25:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fangq",
    "github_project": "mcx",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pmcx"
}
        
Elapsed time: 0.28503s