cpymad


Namecpymad JSON
Version 1.16.3 PyPI version JSON
download
home_pagehttps://github.com/hibtc/cpymad
SummaryCython binding to MAD-X
upload_time2024-04-26 00:40:03
maintainerNone
docs_urlNone
authorThomas Gläßle
requires_python>=3.5
licenseGPLv3+
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            cpymad
------
|Version| |Python| |Platform| |License| |Tests| |Coverage| |Citation|

cpymad is a Cython_ binding to MAD-X_ for giving full control and access to a
MAD-X interpreter in python.

.. _Cython: https://cython.org/
.. _MAD-X: https://cern.ch/mad


**Note:** Support for 32bit builds and python 2.7 has been removed in version
1.8.0. Support for python 3.5 has been removed in version 1.10.0.

**Note:** python 3.6 and manylinux1 have reached EOL. Support will be
removed in a future release.


Links
~~~~~

- `Documentation`_:
    - `Installation`_
    - `Getting started`_

- `Source code`_:
    - `MAD-X source`_

- `Issue tracker`_
- `Releases`_

.. _Getting started: http://hibtc.github.io/cpymad/getting-started
.. _Installation: http://hibtc.github.io/cpymad/installation
.. _Source code: https://github.com/hibtc/cpymad
.. _Documentation: http://hibtc.github.io/cpymad
.. _Issue tracker: https://github.com/hibtc/cpymad/issues
.. _Releases: https://pypi.org/project/cpymad
.. _MAD-X source: https://github.com/MethodicalAcceleratorDesign/MAD-X


License
~~~~~~~

The cpymad source code itself is under free license, see COPYING.rst_.

However, the MAD-X software package and henceforth all binary cpymad package
distributions are **NOT FREE**., see `MAD-X license`_.

.. _COPYING.rst: https://github.com/hibtc/cpymad/blob/master/COPYING.rst
.. _MAD-X license: https://github.com/MethodicalAcceleratorDesign/MAD-X/blob/master/License.txt


CHANGELOG
~~~~~~~~~

The full changelog is available online in CHANGES.rst_.

.. _CHANGES.rst: https://github.com/hibtc/cpymad/blob/master/CHANGES.rst


Reporting issues
~~~~~~~~~~~~~~~~

Note that cpymad links against a custom build of MAD-X that may differ from
the official CERN command line client. This binary may have problems that the
official binary does not have and vice versa.

Therefore, before reporting issues, please make sure that you report to the
correct recipient. First try to check if that problem remains when using the
MAD-X command line client distributed by CERN, then report the issue:

- to CERN if it can be reproduced with the official MAD-X executable
- to us if it can not be reproduced with the official MAD-X executable

Please keep the code in the bug report as minimal as possible, i.e. remove
everything that can be removed such that the issue still occurs. This will
save us some effort in handling the error report.

Please post the code inline, don't upload zip files, or link to external
sources, if possible.

Bug reports should describe the issue and contain a minimal python script
similar to this:

.. code-block:: python

    from cpymad.madx import Madx
    m = Madx()
    m.call('commands.madx')

as well as the content of the ``commands.madx`` file.

You can create this file from your original python code with a minimal change
that tells cpymad to write all MAD-X commands to a file:

.. code-block:: python

   m = Madx(command_log='commands.madx')
   ...

Now run this file with the official MAD-X command line client::

    madx commands.madx

If ``madx`` reports the same error, check if there are any syntax errors in
the ``commands.madx`` file. These may result from incorrect usage of cpymad,
or bugs in cpymad.


.. Badges:

.. |Tests| image::      https://github.com/hibtc/cpymad/workflows/build/badge.svg
   :target:             https://github.com/hibtc/cpymad/actions?query=workflow%3A%22build%22
   :alt:                GitHub Actions Status

.. |Coverage| image::   https://coveralls.io/repos/hibtc/cpymad/badge.svg?branch=master
   :target:             https://coveralls.io/r/hibtc/cpymad
   :alt:                Coverage

.. |Version| image::    https://img.shields.io/pypi/v/cpymad.svg
   :target:             https://pypi.org/project/cpymad
   :alt:                Latest Version

.. |License| image::    https://img.shields.io/badge/license-Mixed-red.svg
   :target:             https://github.com/hibtc/cpymad/blob/master/COPYING.rst
   :alt:                License: Source: CC0, Apache | Binary: Non-Free

.. |Platform| image::   https://img.shields.io/badge/platform-linux%20%7C%20windows%20%7C%20macos-blue
   :target:             https://pypi.org/project/cpymad#files
   :alt:                Supported platforms

.. |Python| image::     https://img.shields.io/pypi/pyversions/cpymad.svg
   :target:             https://pypi.org/project/cpymad#files
   :alt:                Python versions

.. |Citation| image::   https://zenodo.org/badge/DOI/10.5281/zenodo.4724856.svg
   :target:             https://doi.org/10.5281/zenodo.4724856
   :alt:                DOI and Citation

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hibtc/cpymad",
    "name": "cpymad",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": null,
    "keywords": null,
    "author": "Thomas Gl\u00e4\u00dfle",
    "author_email": "t_glaessle@gmx.de",
    "download_url": "https://files.pythonhosted.org/packages/24/ce/cce86bbe121a7ad6cca7ef8adb01db1a7381f6d0188f40db8a2cfa00f566/cpymad-1.16.3.tar.gz",
    "platform": null,
    "description": "cpymad\n------\n|Version| |Python| |Platform| |License| |Tests| |Coverage| |Citation|\n\ncpymad is a Cython_ binding to MAD-X_ for giving full control and access to a\nMAD-X interpreter in python.\n\n.. _Cython: https://cython.org/\n.. _MAD-X: https://cern.ch/mad\n\n\n**Note:** Support for 32bit builds and python 2.7 has been removed in version\n1.8.0. Support for python 3.5 has been removed in version 1.10.0.\n\n**Note:** python 3.6 and manylinux1 have reached EOL. Support will be\nremoved in a future release.\n\n\nLinks\n~~~~~\n\n- `Documentation`_:\n    - `Installation`_\n    - `Getting started`_\n\n- `Source code`_:\n    - `MAD-X source`_\n\n- `Issue tracker`_\n- `Releases`_\n\n.. _Getting started: http://hibtc.github.io/cpymad/getting-started\n.. _Installation: http://hibtc.github.io/cpymad/installation\n.. _Source code: https://github.com/hibtc/cpymad\n.. _Documentation: http://hibtc.github.io/cpymad\n.. _Issue tracker: https://github.com/hibtc/cpymad/issues\n.. _Releases: https://pypi.org/project/cpymad\n.. _MAD-X source: https://github.com/MethodicalAcceleratorDesign/MAD-X\n\n\nLicense\n~~~~~~~\n\nThe cpymad source code itself is under free license, see COPYING.rst_.\n\nHowever, the MAD-X software package and henceforth all binary cpymad package\ndistributions are **NOT FREE**., see `MAD-X license`_.\n\n.. _COPYING.rst: https://github.com/hibtc/cpymad/blob/master/COPYING.rst\n.. _MAD-X license: https://github.com/MethodicalAcceleratorDesign/MAD-X/blob/master/License.txt\n\n\nCHANGELOG\n~~~~~~~~~\n\nThe full changelog is available online in CHANGES.rst_.\n\n.. _CHANGES.rst: https://github.com/hibtc/cpymad/blob/master/CHANGES.rst\n\n\nReporting issues\n~~~~~~~~~~~~~~~~\n\nNote that cpymad links against a custom build of MAD-X that may differ from\nthe official CERN command line client. This binary may have problems that the\nofficial binary does not have and vice versa.\n\nTherefore, before reporting issues, please make sure that you report to the\ncorrect recipient. First try to check if that problem remains when using the\nMAD-X command line client distributed by CERN, then report the issue:\n\n- to CERN if it can be reproduced with the official MAD-X executable\n- to us if it can not be reproduced with the official MAD-X executable\n\nPlease keep the code in the bug report as minimal as possible, i.e. remove\neverything that can be removed such that the issue still occurs. This will\nsave us some effort in handling the error report.\n\nPlease post the code inline, don't upload zip files, or link to external\nsources, if possible.\n\nBug reports should describe the issue and contain a minimal python script\nsimilar to this:\n\n.. code-block:: python\n\n    from cpymad.madx import Madx\n    m = Madx()\n    m.call('commands.madx')\n\nas well as the content of the ``commands.madx`` file.\n\nYou can create this file from your original python code with a minimal change\nthat tells cpymad to write all MAD-X commands to a file:\n\n.. code-block:: python\n\n   m = Madx(command_log='commands.madx')\n   ...\n\nNow run this file with the official MAD-X command line client::\n\n    madx commands.madx\n\nIf ``madx`` reports the same error, check if there are any syntax errors in\nthe ``commands.madx`` file. These may result from incorrect usage of cpymad,\nor bugs in cpymad.\n\n\n.. Badges:\n\n.. |Tests| image::      https://github.com/hibtc/cpymad/workflows/build/badge.svg\n   :target:             https://github.com/hibtc/cpymad/actions?query=workflow%3A%22build%22\n   :alt:                GitHub Actions Status\n\n.. |Coverage| image::   https://coveralls.io/repos/hibtc/cpymad/badge.svg?branch=master\n   :target:             https://coveralls.io/r/hibtc/cpymad\n   :alt:                Coverage\n\n.. |Version| image::    https://img.shields.io/pypi/v/cpymad.svg\n   :target:             https://pypi.org/project/cpymad\n   :alt:                Latest Version\n\n.. |License| image::    https://img.shields.io/badge/license-Mixed-red.svg\n   :target:             https://github.com/hibtc/cpymad/blob/master/COPYING.rst\n   :alt:                License: Source: CC0, Apache | Binary: Non-Free\n\n.. |Platform| image::   https://img.shields.io/badge/platform-linux%20%7C%20windows%20%7C%20macos-blue\n   :target:             https://pypi.org/project/cpymad#files\n   :alt:                Supported platforms\n\n.. |Python| image::     https://img.shields.io/pypi/pyversions/cpymad.svg\n   :target:             https://pypi.org/project/cpymad#files\n   :alt:                Python versions\n\n.. |Citation| image::   https://zenodo.org/badge/DOI/10.5281/zenodo.4724856.svg\n   :target:             https://doi.org/10.5281/zenodo.4724856\n   :alt:                DOI and Citation\n",
    "bugtrack_url": null,
    "license": "GPLv3+",
    "summary": "Cython binding to MAD-X",
    "version": "1.16.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/hibtc/cpymad/issues",
        "Documentation": "http://hibtc.github.io/cpymad/",
        "Homepage": "https://github.com/hibtc/cpymad",
        "Source Code": "https://github.com/hibtc/cpymad"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69c60c937e254ed7db065abd09a67e11c0b5adc2c4069404f0f754155bd2b2da",
                "md5": "0c9b89ea7ae3ea688b08bb80ab14408e",
                "sha256": "fe306bdcdb9ea5e6ed9dfc3ea861a9411ba46d83ba0002ffd0cb35591460ff28"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0c9b89ea7ae3ea688b08bb80ab14408e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 6156753,
            "upload_time": "2024-04-26T00:38:36",
            "upload_time_iso_8601": "2024-04-26T00:38:36.887053Z",
            "url": "https://files.pythonhosted.org/packages/69/c6/0c937e254ed7db065abd09a67e11c0b5adc2c4069404f0f754155bd2b2da/cpymad-1.16.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2a3bed4559ad54eead7cb3ee2c0f5dfd6a47a774827cbd163122b1af358cd0e",
                "md5": "4634c91600ac4576c3b658a080014597",
                "sha256": "d7681371a440a91617d59ad90500a2d448c7364b8bba45d516d9e350dc6fa6c6"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4634c91600ac4576c3b658a080014597",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 6113613,
            "upload_time": "2024-04-26T00:38:41",
            "upload_time_iso_8601": "2024-04-26T00:38:41.726756Z",
            "url": "https://files.pythonhosted.org/packages/d2/a3/bed4559ad54eead7cb3ee2c0f5dfd6a47a774827cbd163122b1af358cd0e/cpymad-1.16.3-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9532980b1e52381b2042a2818d6a4e6be909cb658191b645dea3aa0f87965807",
                "md5": "38c806889fb9ddd6b35b12f5920fc637",
                "sha256": "500326b0ba2fb90aa6ae5bba5f013d53061e92a260962ce683f11c90d6e5a76b"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "38c806889fb9ddd6b35b12f5920fc637",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 6121059,
            "upload_time": "2024-04-26T00:38:43",
            "upload_time_iso_8601": "2024-04-26T00:38:43.440835Z",
            "url": "https://files.pythonhosted.org/packages/95/32/980b1e52381b2042a2818d6a4e6be909cb658191b645dea3aa0f87965807/cpymad-1.16.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d902abd9361a1b75b481c96a5c8dab43814562bef4846dc999770884f87de1b",
                "md5": "37a85665d23fda266bce2dd026927e03",
                "sha256": "b7f0ee50eabf1de97b83f04872a16774129b9d519f22e7d2cf7a29838ff60f34"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37a85665d23fda266bce2dd026927e03",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 6681511,
            "upload_time": "2024-04-26T00:38:45",
            "upload_time_iso_8601": "2024-04-26T00:38:45.440468Z",
            "url": "https://files.pythonhosted.org/packages/3d/90/2abd9361a1b75b481c96a5c8dab43814562bef4846dc999770884f87de1b/cpymad-1.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76d1033daf72f085ca2b5a4ecc64da3a1719fd420b27cea9b6dfa878ccb4b35b",
                "md5": "7798c4957bc2bb76e0764beb9ab6fcbb",
                "sha256": "084db0034dcf5b934a82f7ef0eeeaf896f42f3653307a7d3d5ff45eeb3ee959b"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7798c4957bc2bb76e0764beb9ab6fcbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 5381994,
            "upload_time": "2024-04-26T00:38:47",
            "upload_time_iso_8601": "2024-04-26T00:38:47.719133Z",
            "url": "https://files.pythonhosted.org/packages/76/d1/033daf72f085ca2b5a4ecc64da3a1719fd420b27cea9b6dfa878ccb4b35b/cpymad-1.16.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78563600d8cedf5906a5f072b27c4173b30447f5fdb14a7ab7b3d35e0db7f998",
                "md5": "c69151c13db19fe279c3bd3e3261ea50",
                "sha256": "8f1d35ce32be20d3c8a6ca84f9b3d84415942acaf3e23ddde74aad59d83f97cd"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c69151c13db19fe279c3bd3e3261ea50",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 6157960,
            "upload_time": "2024-04-26T00:38:49",
            "upload_time_iso_8601": "2024-04-26T00:38:49.541293Z",
            "url": "https://files.pythonhosted.org/packages/78/56/3600d8cedf5906a5f072b27c4173b30447f5fdb14a7ab7b3d35e0db7f998/cpymad-1.16.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1132d7793612e550dc55fd28952b75a858695479078dace88bd8b9212068f0d2",
                "md5": "c624dc1c44b23e94fcaca03fb577943c",
                "sha256": "2d0b7ff1ecc358c1681a7ca2950f122dcefd54c7fad9397b87af521c53120cc1"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp311-cp311-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "c624dc1c44b23e94fcaca03fb577943c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 6267555,
            "upload_time": "2024-04-26T00:38:51",
            "upload_time_iso_8601": "2024-04-26T00:38:51.931518Z",
            "url": "https://files.pythonhosted.org/packages/11/32/d7793612e550dc55fd28952b75a858695479078dace88bd8b9212068f0d2/cpymad-1.16.3-cp311-cp311-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4a6db01b35a1ffe21dec715df8890130393e9329dc1c16546046f5fb4e12646",
                "md5": "22a7d6b5172991e7ef6a02295ae3fe2f",
                "sha256": "39bb842eb33180b27aee14de5a275197953c10333977269232cd6b2b191cd243"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22a7d6b5172991e7ef6a02295ae3fe2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 6210975,
            "upload_time": "2024-04-26T00:38:54",
            "upload_time_iso_8601": "2024-04-26T00:38:54.284087Z",
            "url": "https://files.pythonhosted.org/packages/f4/a6/db01b35a1ffe21dec715df8890130393e9329dc1c16546046f5fb4e12646/cpymad-1.16.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efdf11f698118049c9a1743d4a18ca41fe0c038c6f7761efa953890e54bd83fd",
                "md5": "31d6192a71196009b377b02201b41171",
                "sha256": "662e0734d101dab4e7a88e9bcaf005611a60f1bb10dba928dffdf6b958b8308e"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31d6192a71196009b377b02201b41171",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 6768441,
            "upload_time": "2024-04-26T00:38:57",
            "upload_time_iso_8601": "2024-04-26T00:38:57.174136Z",
            "url": "https://files.pythonhosted.org/packages/ef/df/11f698118049c9a1743d4a18ca41fe0c038c6f7761efa953890e54bd83fd/cpymad-1.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1345e193938b4a730a48eefe7451a073b6b658c53e2901dd63129a3ade27f30f",
                "md5": "a8337d95add9d35c5512c9885e1a9bb9",
                "sha256": "6e6bd90e911201c4d4e9f373ec160b6dd7cc7429166cb5096cce37912edae2f8"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a8337d95add9d35c5512c9885e1a9bb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 5375391,
            "upload_time": "2024-04-26T00:38:58",
            "upload_time_iso_8601": "2024-04-26T00:38:58.819813Z",
            "url": "https://files.pythonhosted.org/packages/13/45/e193938b4a730a48eefe7451a073b6b658c53e2901dd63129a3ade27f30f/cpymad-1.16.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ae843466608ec9e1ed2b1147f5608bc669fb6a6d1ac7749d4062e23c058913c",
                "md5": "3323e33959fddb3d947d49f437a9780b",
                "sha256": "98777541c03e0249bf6a40622c76222f82036488610d1e8faf87d50d981fb372"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3323e33959fddb3d947d49f437a9780b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 6156663,
            "upload_time": "2024-04-26T00:39:00",
            "upload_time_iso_8601": "2024-04-26T00:39:00.635881Z",
            "url": "https://files.pythonhosted.org/packages/2a/e8/43466608ec9e1ed2b1147f5608bc669fb6a6d1ac7749d4062e23c058913c/cpymad-1.16.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d1a2cb2eece2e02dd546b46d7350778f6edeb53c03b84d2bb5ab5ca6090466e",
                "md5": "7af5b59764508235fd050b27a3d13620",
                "sha256": "e663a6fb0f252721fc9d3c8a7f9591d14da2cb72410bd8a462a27332be4d7330"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp312-cp312-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "7af5b59764508235fd050b27a3d13620",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 6265115,
            "upload_time": "2024-04-26T00:39:02",
            "upload_time_iso_8601": "2024-04-26T00:39:02.748368Z",
            "url": "https://files.pythonhosted.org/packages/9d/1a/2cb2eece2e02dd546b46d7350778f6edeb53c03b84d2bb5ab5ca6090466e/cpymad-1.16.3-cp312-cp312-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49c3d8d45e11147cdd1642f36e16938a2d4b6913a7989239ee54cfd88a960baa",
                "md5": "0cca30ad855db909af6051a21e115fdb",
                "sha256": "fb78955a498cde8d21c347fb6ff595fa02643d8d93055a0b053c6f3b32a6b22f"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0cca30ad855db909af6051a21e115fdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 6185354,
            "upload_time": "2024-04-26T00:39:05",
            "upload_time_iso_8601": "2024-04-26T00:39:05.183503Z",
            "url": "https://files.pythonhosted.org/packages/49/c3/d8d45e11147cdd1642f36e16938a2d4b6913a7989239ee54cfd88a960baa/cpymad-1.16.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7628b3ed22504ddd5dfeea6fe6dd900ef663c023aa16230ace669be1d6858112",
                "md5": "fbc1977271e6f0ef650b5d59eef519f6",
                "sha256": "4ffc5d99a31a31f405bf976112403dca447cf2b7f4b58ab992c1614b90d6c4f0"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbc1977271e6f0ef650b5d59eef519f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 6752589,
            "upload_time": "2024-04-26T00:39:07",
            "upload_time_iso_8601": "2024-04-26T00:39:07.093294Z",
            "url": "https://files.pythonhosted.org/packages/76/28/b3ed22504ddd5dfeea6fe6dd900ef663c023aa16230ace669be1d6858112/cpymad-1.16.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "481c29cd43cd9752839e8aa59d3068b472b22142348f937d7c09e981246d31b5",
                "md5": "44edda27fcc414d6886a06ad030aa7f0",
                "sha256": "69cf6a502ec1c126407712652b158a4fa80ce8fb690c78a577b14e26528e1f23"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "44edda27fcc414d6886a06ad030aa7f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 5380072,
            "upload_time": "2024-04-26T00:39:09",
            "upload_time_iso_8601": "2024-04-26T00:39:09.419551Z",
            "url": "https://files.pythonhosted.org/packages/48/1c/29cd43cd9752839e8aa59d3068b472b22142348f937d7c09e981246d31b5/cpymad-1.16.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80e5d09ae43317529c6475eb33e261be3a5a596679c6ba91f4f53f84b481a0c1",
                "md5": "023196617b5b50842cf90839351ee066",
                "sha256": "e9ce17cf5b8c35f691fcbe1fb1adbafdcfe36ac3ff7627b555e2927988a1a2aa"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "023196617b5b50842cf90839351ee066",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": ">=3.5",
            "size": 5548242,
            "upload_time": "2024-04-26T00:39:11",
            "upload_time_iso_8601": "2024-04-26T00:39:11.135999Z",
            "url": "https://files.pythonhosted.org/packages/80/e5/d09ae43317529c6475eb33e261be3a5a596679c6ba91f4f53f84b481a0c1/cpymad-1.16.3-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cde4fd9c3db3e64b791701f537fd1906d25f5e9c210029839b277b146edc6d3",
                "md5": "dc6f01bd4563a912ff6bc2850b9e22bb",
                "sha256": "18f9cf30a6a66e84fab800d126b47a29b109ded3ff6d1097f28287cfab036d28"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp36-cp36m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc6f01bd4563a912ff6bc2850b9e22bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 6155989,
            "upload_time": "2024-04-26T00:39:13",
            "upload_time_iso_8601": "2024-04-26T00:39:13.669097Z",
            "url": "https://files.pythonhosted.org/packages/8c/de/4fd9c3db3e64b791701f537fd1906d25f5e9c210029839b277b146edc6d3/cpymad-1.16.3-cp36-cp36m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcbdf6ab914907fea89577c2c04bedbb99a02ab25a1f2daa0c28a8ac0b674799",
                "md5": "02ac94bea58f2a4bc7460ff847667190",
                "sha256": "d8bba6c2068a71263354f691cba32d8c7d0b7acbda2e0605ac3e573fb9592cef"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp36-cp36m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02ac94bea58f2a4bc7460ff847667190",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 6112282,
            "upload_time": "2024-04-26T00:39:15",
            "upload_time_iso_8601": "2024-04-26T00:39:15.875464Z",
            "url": "https://files.pythonhosted.org/packages/fc/bd/f6ab914907fea89577c2c04bedbb99a02ab25a1f2daa0c28a8ac0b674799/cpymad-1.16.3-cp36-cp36m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fe1cead4030fb9256e81b86f0397e7744e1bbf3b5eacd0c13cf5a26f47c77fc",
                "md5": "d476dc90e72d17e930d9045384b07180",
                "sha256": "7e1e88a895b94a0b428607f3b08c618cdd6d571a8bf895f8b6bddd258d618cb9"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d476dc90e72d17e930d9045384b07180",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 6033640,
            "upload_time": "2024-04-26T00:39:18",
            "upload_time_iso_8601": "2024-04-26T00:39:18.417507Z",
            "url": "https://files.pythonhosted.org/packages/3f/e1/cead4030fb9256e81b86f0397e7744e1bbf3b5eacd0c13cf5a26f47c77fc/cpymad-1.16.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e26abb9d54edb315af7aa8562f34e4c8bd0f40a7e5040215742edfd6241b22ee",
                "md5": "544533f3c7d827aa9849114e980c3381",
                "sha256": "2f5dadb55fb4a373d2c82e5b255b02bc50eb745e5ed583632f75f8ccc6628fb3"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "544533f3c7d827aa9849114e980c3381",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 6594532,
            "upload_time": "2024-04-26T00:39:21",
            "upload_time_iso_8601": "2024-04-26T00:39:21.061419Z",
            "url": "https://files.pythonhosted.org/packages/e2/6a/bb9d54edb315af7aa8562f34e4c8bd0f40a7e5040215742edfd6241b22ee/cpymad-1.16.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbe8663cdc10fefd2dfedb013149e1982e2323bd01b181818a287d9996a6a016",
                "md5": "de96f3ee3e261e7ca40a019ab409433e",
                "sha256": "afd90aa3af60bd599616ce99e59fe4820114936ffdf350d7cdc192973a0f4430"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de96f3ee3e261e7ca40a019ab409433e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 5559614,
            "upload_time": "2024-04-26T00:39:22",
            "upload_time_iso_8601": "2024-04-26T00:39:22.853909Z",
            "url": "https://files.pythonhosted.org/packages/fb/e8/663cdc10fefd2dfedb013149e1982e2323bd01b181818a287d9996a6a016/cpymad-1.16.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4115763f71134bbd81b60c9764cb5049f9bd25703dd5572649865e4d6792b5e5",
                "md5": "c5ab5b95f04f880bf066f25478af439f",
                "sha256": "429135f4ba2255df2e5b3c50de77e23aa692a64b9d8473c9d7b803989d9fcde4"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c5ab5b95f04f880bf066f25478af439f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 5364472,
            "upload_time": "2024-04-26T00:39:25",
            "upload_time_iso_8601": "2024-04-26T00:39:25.264520Z",
            "url": "https://files.pythonhosted.org/packages/41/15/763f71134bbd81b60c9764cb5049f9bd25703dd5572649865e4d6792b5e5/cpymad-1.16.3-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97283fef8b8664e763f75833d3050d138db1256349db4632659712d2f4ac982a",
                "md5": "a8a50873c0965019a1ed66c831b1d921",
                "sha256": "cd9aa09bad845dd6a3a3164125a712e7f3e3c8a9fe5cdf1401efc7532e0a530b"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a8a50873c0965019a1ed66c831b1d921",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 6156155,
            "upload_time": "2024-04-26T00:39:26",
            "upload_time_iso_8601": "2024-04-26T00:39:26.993195Z",
            "url": "https://files.pythonhosted.org/packages/97/28/3fef8b8664e763f75833d3050d138db1256349db4632659712d2f4ac982a/cpymad-1.16.3-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3497e9df76c1e0675df994ac756107b8a156d5f0ab98eb79dff7c2b151728270",
                "md5": "a2a155fcdfb220f826c38e0ed3b8d784",
                "sha256": "e9a309bc93551019048761e375641c32121af151c3a4d90e8eb1ebbb7a408919"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2a155fcdfb220f826c38e0ed3b8d784",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 6113614,
            "upload_time": "2024-04-26T00:39:29",
            "upload_time_iso_8601": "2024-04-26T00:39:29.047898Z",
            "url": "https://files.pythonhosted.org/packages/34/97/e9df76c1e0675df994ac756107b8a156d5f0ab98eb79dff7c2b151728270/cpymad-1.16.3-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3a2a96f084fdd5ec7095499ebe53400c7a2347bba5fb70c6717d439d5c57022",
                "md5": "adf0126ec401d0a02b70669af6563d50",
                "sha256": "4aa0d16805dffc8576db15852fbc39957541953a22b1ad82be3b4b25e80b6037"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "adf0126ec401d0a02b70669af6563d50",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 6048437,
            "upload_time": "2024-04-26T00:39:31",
            "upload_time_iso_8601": "2024-04-26T00:39:31.057511Z",
            "url": "https://files.pythonhosted.org/packages/c3/a2/a96f084fdd5ec7095499ebe53400c7a2347bba5fb70c6717d439d5c57022/cpymad-1.16.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca458c0197abececedffb16d39b410b2f21e63da917cb615637c2fd7dd2978d6",
                "md5": "4073a44a8626d636d53802dd9a5ae224",
                "sha256": "2ad3b4a1a61f69b949475ff1d1b8362f2cd09db59bb6bd0e259d8dbb95c28f78"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4073a44a8626d636d53802dd9a5ae224",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 6611469,
            "upload_time": "2024-04-26T00:39:33",
            "upload_time_iso_8601": "2024-04-26T00:39:33.122700Z",
            "url": "https://files.pythonhosted.org/packages/ca/45/8c0197abececedffb16d39b410b2f21e63da917cb615637c2fd7dd2978d6/cpymad-1.16.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79a2b522889213fd55bd1802e0f69a2495a5e087ab5ca0a9eae156536a5485bc",
                "md5": "120748c000acd3415f7a7570be3cacc7",
                "sha256": "6c570b046bb86f0f89a64b4369b1be54c4c7e39120f65e49321206144dbf0876"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "120748c000acd3415f7a7570be3cacc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 5595924,
            "upload_time": "2024-04-26T00:39:34",
            "upload_time_iso_8601": "2024-04-26T00:39:34.785192Z",
            "url": "https://files.pythonhosted.org/packages/79/a2/b522889213fd55bd1802e0f69a2495a5e087ab5ca0a9eae156536a5485bc/cpymad-1.16.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbbeef4f9e687ea9ec2b1b973a4a6c7895b7b113d7365bb49340b81385de89bf",
                "md5": "eea00b88fe40df506d9f8fa87c64b5b1",
                "sha256": "bc3507b884ee2c4e8bb8da8a713f9d3c1a81e3620a5818a6188ee8cdbfc25a6e"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eea00b88fe40df506d9f8fa87c64b5b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 5370353,
            "upload_time": "2024-04-26T00:39:36",
            "upload_time_iso_8601": "2024-04-26T00:39:36.714495Z",
            "url": "https://files.pythonhosted.org/packages/db/be/ef4f9e687ea9ec2b1b973a4a6c7895b7b113d7365bb49340b81385de89bf/cpymad-1.16.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "006f23fb0c45e825e5b620823f8bbc22ca258f52bf40715b598d5441a6b09126",
                "md5": "c36f7f822d0d40d5db0dd0965dc93c0f",
                "sha256": "f3fc9b58f7cb1daaa8f9b393932cdf14063f5d0ae32db51599be0b851c12bbd7"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c36f7f822d0d40d5db0dd0965dc93c0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 6157854,
            "upload_time": "2024-04-26T00:39:38",
            "upload_time_iso_8601": "2024-04-26T00:39:38.407832Z",
            "url": "https://files.pythonhosted.org/packages/00/6f/23fb0c45e825e5b620823f8bbc22ca258f52bf40715b598d5441a6b09126/cpymad-1.16.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9be3e734d8140a0c41c53dd974b69cca29a428f649822a9c311a16ab9ba092c7",
                "md5": "c1609866d21c811a15407a2dde5a4adb",
                "sha256": "2d40b212dd510fa670274c5f6922f288c93c0d6500fbe18ab73e0b0f8c7849d0"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1609866d21c811a15407a2dde5a4adb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 6113364,
            "upload_time": "2024-04-26T00:39:40",
            "upload_time_iso_8601": "2024-04-26T00:39:40.291682Z",
            "url": "https://files.pythonhosted.org/packages/9b/e3/e734d8140a0c41c53dd974b69cca29a428f649822a9c311a16ab9ba092c7/cpymad-1.16.3-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8bcae5605713297c87823bb77fd843af7751e9af776337c40275c58e5216449",
                "md5": "18d6a735ae22171417ea322b200078fe",
                "sha256": "939410c1b532f704349e9c7c94c7fd61667f570327fb48c83d10ffd4fe8dcbb9"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18d6a735ae22171417ea322b200078fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 6139178,
            "upload_time": "2024-04-26T00:39:42",
            "upload_time_iso_8601": "2024-04-26T00:39:42.291478Z",
            "url": "https://files.pythonhosted.org/packages/e8/bc/ae5605713297c87823bb77fd843af7751e9af776337c40275c58e5216449/cpymad-1.16.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0a9c3048ff8d90556c62a751105cb6e540e45f903506d9818066effc425a2b3",
                "md5": "4e1902971f8a8924fd97852700efe5a6",
                "sha256": "daea4ca48920c9d9129c4b780ba7c3df945d4f2c32786cb9059d8e14100d8d94"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e1902971f8a8924fd97852700efe5a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 6704016,
            "upload_time": "2024-04-26T00:39:44",
            "upload_time_iso_8601": "2024-04-26T00:39:44.036133Z",
            "url": "https://files.pythonhosted.org/packages/a0/a9/c3048ff8d90556c62a751105cb6e540e45f903506d9818066effc425a2b3/cpymad-1.16.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1593f348052fce5d3f65fddac1b336dbaa5fcc5dd893d6632495552efe3414e6",
                "md5": "406564000c0fb12c9314e89448cfbd5e",
                "sha256": "dfb56998fc327f8a1a68cf9817947ebde081d8046ba7ab6c350e0d3c281e7401"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "406564000c0fb12c9314e89448cfbd5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 5615286,
            "upload_time": "2024-04-26T00:39:46",
            "upload_time_iso_8601": "2024-04-26T00:39:46.061387Z",
            "url": "https://files.pythonhosted.org/packages/15/93/f348052fce5d3f65fddac1b336dbaa5fcc5dd893d6632495552efe3414e6/cpymad-1.16.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bb42da09bd57de57accc41c74582bc138d8de67aab5ff19b72d3dcec8672076",
                "md5": "87251826bf163cab8cc324f6da14d3af",
                "sha256": "c791cd46312ebd531a065b584f1a36d00e8dcfd53d5bda3dea3da9b8ce29b83f"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "87251826bf163cab8cc324f6da14d3af",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 5383183,
            "upload_time": "2024-04-26T00:39:48",
            "upload_time_iso_8601": "2024-04-26T00:39:48.181261Z",
            "url": "https://files.pythonhosted.org/packages/4b/b4/2da09bd57de57accc41c74582bc138d8de67aab5ff19b72d3dcec8672076/cpymad-1.16.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aac0e3e1a392b0c32bbbb118d0e93e536da96312e73142fcc028fb4db2083f4b",
                "md5": "64a19550b8c93c97638c64b6ec04e25a",
                "sha256": "51cacaba69b4d86c98006026fa2c268dc736b2addcaa596d4a829a44a4cfe992"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "64a19550b8c93c97638c64b6ec04e25a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 6156918,
            "upload_time": "2024-04-26T00:39:49",
            "upload_time_iso_8601": "2024-04-26T00:39:49.837900Z",
            "url": "https://files.pythonhosted.org/packages/aa/c0/e3e1a392b0c32bbbb118d0e93e536da96312e73142fcc028fb4db2083f4b/cpymad-1.16.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14e8b1178d5f65054f1b3b5b6c8854fc09794dcf80d0c9ce8a9fd19a296e01bb",
                "md5": "006d3d84c2b796f1c5f24f9cc8884c47",
                "sha256": "77aa22b493140f8cc895fc082ab53ed69368b5faa36dedf96aab8c1059df5b0b"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "006d3d84c2b796f1c5f24f9cc8884c47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 6114113,
            "upload_time": "2024-04-26T00:39:52",
            "upload_time_iso_8601": "2024-04-26T00:39:52.001597Z",
            "url": "https://files.pythonhosted.org/packages/14/e8/b1178d5f65054f1b3b5b6c8854fc09794dcf80d0c9ce8a9fd19a296e01bb/cpymad-1.16.3-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c859e6627ee3e78d5209b61d5e8a00739176bf4122f66e27b84e1b5cc55f22e",
                "md5": "2309f738e78b7ad4c4b1b344c29186e2",
                "sha256": "c8107ec9363804dd531be67918cae070b4bdc22cf011edbe9cf8a005f101b42c"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2309f738e78b7ad4c4b1b344c29186e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 6121123,
            "upload_time": "2024-04-26T00:39:53",
            "upload_time_iso_8601": "2024-04-26T00:39:53.851463Z",
            "url": "https://files.pythonhosted.org/packages/0c/85/9e6627ee3e78d5209b61d5e8a00739176bf4122f66e27b84e1b5cc55f22e/cpymad-1.16.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4abddf61a2df624991544200f3fc0fad5e1da7b4cf0cdcc5a63e16cb95e45ee4",
                "md5": "34f5c01b4f686402cb490f7df6ad0752",
                "sha256": "d01e6aa51d5f7f53207cf7ae8935d756c3e60f6b25b9ec5ae4ac8405427eaea8"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34f5c01b4f686402cb490f7df6ad0752",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 6682627,
            "upload_time": "2024-04-26T00:39:55",
            "upload_time_iso_8601": "2024-04-26T00:39:55.892425Z",
            "url": "https://files.pythonhosted.org/packages/4a/bd/df61a2df624991544200f3fc0fad5e1da7b4cf0cdcc5a63e16cb95e45ee4/cpymad-1.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27640cf53c368ecbec845c6ed35a272518b32038d1d14306bd17db6433f21a74",
                "md5": "760590d045d405da60d99c6d8d9119ef",
                "sha256": "42dca186206ae0d2066f637a00c3892e4ca1d398fbd5843ffaa1178f8966f922"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "760590d045d405da60d99c6d8d9119ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 5575304,
            "upload_time": "2024-04-26T00:39:57",
            "upload_time_iso_8601": "2024-04-26T00:39:57.804921Z",
            "url": "https://files.pythonhosted.org/packages/27/64/0cf53c368ecbec845c6ed35a272518b32038d1d14306bd17db6433f21a74/cpymad-1.16.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1d3bdbd855bad2ba82611c281713482dc4a857c988663e633b9839b838b5685",
                "md5": "4e59f5083c0844d441137ed52e98104c",
                "sha256": "4154bad5e0f828291c13f5e67ae05b28fcc8d29a943ce5cfa2cd27c55e62b02f"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e59f5083c0844d441137ed52e98104c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 5382267,
            "upload_time": "2024-04-26T00:40:01",
            "upload_time_iso_8601": "2024-04-26T00:40:01.259471Z",
            "url": "https://files.pythonhosted.org/packages/f1/d3/bdbd855bad2ba82611c281713482dc4a857c988663e633b9839b838b5685/cpymad-1.16.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24cecce86bbe121a7ad6cca7ef8adb01db1a7381f6d0188f40db8a2cfa00f566",
                "md5": "ed07dfa12a7254efdc2a5cff336296b4",
                "sha256": "d0cfabe66df4c6db52b0b4d4eb6c0e80c97da6cef58a087bed7c1901ea2078bf"
            },
            "downloads": -1,
            "filename": "cpymad-1.16.3.tar.gz",
            "has_sig": false,
            "md5_digest": "ed07dfa12a7254efdc2a5cff336296b4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 295542,
            "upload_time": "2024-04-26T00:40:03",
            "upload_time_iso_8601": "2024-04-26T00:40:03.784357Z",
            "url": "https://files.pythonhosted.org/packages/24/ce/cce86bbe121a7ad6cca7ef8adb01db1a7381f6d0188f40db8a2cfa00f566/cpymad-1.16.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-26 00:40:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hibtc",
    "github_project": "cpymad",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cpymad"
}
        
Elapsed time: 0.31369s