mapdl-archive


Namemapdl-archive JSON
Version 0.1.4 PyPI version JSON
download
home_pagehttps://github.com/akaszynski/mapdl-archive
SummaryPythonic interface to MAPDL archive files.
upload_time2023-11-03 14:37:29
maintainer
docs_urlNone
authorAlex Kaszynski
requires_python>=3.8
licenseMIT
keywords vtk mapdl ansys cdb
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====================
MAPDL Archive Reader
====================
|pypi| |GH-CI| |MIT| |black|

.. |pypi| image:: https://img.shields.io/pypi/v/mapdl-archive.svg?logo=python&logoColor=white
   :target: https://pypi.org/project/mapdl-archive/

.. |GH-CI| image:: https://github.com/akaszynski/mapdl-archive/actions/workflows/testing-and-deployment.yml/badge.svg
   :target: https://github.com/akaszynski/mapdl-archive/actions/workflows/testing-and-deployment.yml

.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
   :target: https://opensource.org/licenses/MIT

.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat
  :target: https://github.com/psf/black
  :alt: black

Read blocked Ansys MAPDL archive files written from MAPDL using ``CDWRITE``.

This is effectively `pymapdl-reader <https://github.com/ansys/pymapdl-reader>`_ without the binary reader. It's been isolated to allow greater flexibility in development.

Installation
------------
Installation through pip::

   pip install mapdl-archive


Examples
--------

Load and Plot an MAPDL Archive File
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ANSYS archive files containing solid elements (both legacy and
modern), can be loaded using Archive and then converted to a VTK
object.

.. code:: python

    from mapdl_archive import Archive, examples
    
    # Sample *.cdb
    filename = examples.hexarchivefile
    
    # Read ansys archive file
    archive = Archive(filename)
    
    # Print raw data from cdb
    for key in archive.raw:
       print("%s : %s" % (key, archive.raw[key]))
    
    # Create an unstructured grid from the raw data and plot it
    grid = archive.parse_vtk(force_linear=True)
    grid.plot(color='w', show_edges=True)
    
    # write this as a vtk xml file 
    grid.save('hex.vtu')

    # or as a vtk binary
    grid.save('hex.vtk')


.. figure:: https://github.com/akaszynski/mapdl-archive/blob/main/doc/hexbeam_small.png
   :alt: Hexahedral beam

You can then load this vtk file using `PyVista
<https://docs.pyvista.org/version/stable/>`_ or `VTK <https://vtk.org/>`_.
    
.. code:: python

    import pyvista as pv
    grid = pv.UnstructuredGrid('hex.vtu')
    grid.plot()


Reading ANSYS Archives
----------------------
MAPDL archive ``*.cdb`` and ``*.dat`` files containing elements (both
legacy and modern) can be loaded using Archive and then converted to a
``vtk`` object:

.. code:: python

    import mapdl_archive
    from mapdl_archive import examples

    # Read a sample archive file
    archive = mapdl_archive.Archive(examples.hexarchivefile)

    # Print various raw data from cdb
    print(archive.nnum, archive.nodes)

    # access a vtk unstructured grid from the raw data and plot it
    grid = archive.grid
    archive.plot(color='w', show_edges=True)


You can also optionally read in any stored parameters within the
archive file by enabling the ``read_parameters`` parameter.

.. code:: python

    import mapdl_archive
    archive = mapdl_archive.Archive('mesh.cdb', read_parameters=True)

    # parameters are stored as a dictionary
    archive.parameters


Writing MAPDL Archives
----------------------
Unstructured grids generated using VTK can be converted to ANSYS APDL archive
files and loaded into any version of ANSYS using
``mapdl_archive.save_as_archive`` in Python followed by ``CDREAD`` in MAPDL.
The following example using the built-in archive file demonstrates this
capability.

.. code:: python

    import pyvista as pv
    from pyvista import examples
    import mapdl_archive

    # load in a vtk unstructured grid
    grid = pv.UnstructuredGrid(examples.hexbeamfile)
    script_filename = '/tmp/grid.cdb'
    mapdl_archive.save_as_archive(script_filename, grid)

    # Optionally read in archive in PyMAPDL and generate cell shape
    # quality report
    from ansys.mapdl.core import launch_mapdl
    mapdl = launch_mapdl()
    mapdl.cdread('db', script_filename)
    mapdl.prep7()
    mapdl.shpp('SUMM')

Resulting ANSYS quality report:

.. code::

    ------------------------------------------------------------------------------
               <<<<<<          SHAPE TESTING SUMMARY           >>>>>>
               <<<<<<        FOR ALL SELECTED ELEMENTS         >>>>>>
    ------------------------------------------------------------------------------
                       --------------------------------------
                       |  Element count        40 SOLID185  |
                       --------------------------------------
   
     Test                Number tested  Warning count  Error count    Warn+Err %
     ----                -------------  -------------  -----------    ----------
     Aspect Ratio                 40              0             0         0.00 %
     Parallel Deviation           40              0             0         0.00 %
     Maximum Angle                40              0             0         0.00 %
     Jacobian Ratio               40              0             0         0.00 %
     Warping Factor               40              0             0         0.00 %
   
     Any                          40              0             0         0.00 %
    ------------------------------------------------------------------------------


Supported Elements
~~~~~~~~~~~~~~~~~~
At the moment, only solid elements are supported by the
``save_as_archive`` function, to include:

- ``vtk.VTK_TETRA``
- ``vtk.VTK_QUADRATIC_TETRA``
- ``vtk.VTK_PYRAMID``
- ``vtk.VTK_QUADRATIC_PYRAMID``
- ``vtk.VTK_WEDGE``
- ``vtk.VTK_QUADRATIC_WEDGE``
- ``vtk.VTK_HEXAHEDRON``
- ``vtk.VTK_QUADRATIC_HEXAHEDRON``

Linear element types will be written as SOLID185, quadratic elements
will be written as SOLID186, except for quadratic tetrahedrals, which
will be written as SOLID187.


License and Acknowledgments
---------------------------
The ``mapdl-archive`` library is licensed under the MIT license.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/akaszynski/mapdl-archive",
    "name": "mapdl-archive",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "vtk MAPDL ANSYS cdb",
    "author": "Alex Kaszynski",
    "author_email": "akascap@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "====================\nMAPDL Archive Reader\n====================\n|pypi| |GH-CI| |MIT| |black|\n\n.. |pypi| image:: https://img.shields.io/pypi/v/mapdl-archive.svg?logo=python&logoColor=white\n   :target: https://pypi.org/project/mapdl-archive/\n\n.. |GH-CI| image:: https://github.com/akaszynski/mapdl-archive/actions/workflows/testing-and-deployment.yml/badge.svg\n   :target: https://github.com/akaszynski/mapdl-archive/actions/workflows/testing-and-deployment.yml\n\n.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg\n   :target: https://opensource.org/licenses/MIT\n\n.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat\n  :target: https://github.com/psf/black\n  :alt: black\n\nRead blocked Ansys MAPDL archive files written from MAPDL using ``CDWRITE``.\n\nThis is effectively `pymapdl-reader <https://github.com/ansys/pymapdl-reader>`_ without the binary reader. It's been isolated to allow greater flexibility in development.\n\nInstallation\n------------\nInstallation through pip::\n\n   pip install mapdl-archive\n\n\nExamples\n--------\n\nLoad and Plot an MAPDL Archive File\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nANSYS archive files containing solid elements (both legacy and\nmodern), can be loaded using Archive and then converted to a VTK\nobject.\n\n.. code:: python\n\n    from mapdl_archive import Archive, examples\n    \n    # Sample *.cdb\n    filename = examples.hexarchivefile\n    \n    # Read ansys archive file\n    archive = Archive(filename)\n    \n    # Print raw data from cdb\n    for key in archive.raw:\n       print(\"%s : %s\" % (key, archive.raw[key]))\n    \n    # Create an unstructured grid from the raw data and plot it\n    grid = archive.parse_vtk(force_linear=True)\n    grid.plot(color='w', show_edges=True)\n    \n    # write this as a vtk xml file \n    grid.save('hex.vtu')\n\n    # or as a vtk binary\n    grid.save('hex.vtk')\n\n\n.. figure:: https://github.com/akaszynski/mapdl-archive/blob/main/doc/hexbeam_small.png\n   :alt: Hexahedral beam\n\nYou can then load this vtk file using `PyVista\n<https://docs.pyvista.org/version/stable/>`_ or `VTK <https://vtk.org/>`_.\n    \n.. code:: python\n\n    import pyvista as pv\n    grid = pv.UnstructuredGrid('hex.vtu')\n    grid.plot()\n\n\nReading ANSYS Archives\n----------------------\nMAPDL archive ``*.cdb`` and ``*.dat`` files containing elements (both\nlegacy and modern) can be loaded using Archive and then converted to a\n``vtk`` object:\n\n.. code:: python\n\n    import mapdl_archive\n    from mapdl_archive import examples\n\n    # Read a sample archive file\n    archive = mapdl_archive.Archive(examples.hexarchivefile)\n\n    # Print various raw data from cdb\n    print(archive.nnum, archive.nodes)\n\n    # access a vtk unstructured grid from the raw data and plot it\n    grid = archive.grid\n    archive.plot(color='w', show_edges=True)\n\n\nYou can also optionally read in any stored parameters within the\narchive file by enabling the ``read_parameters`` parameter.\n\n.. code:: python\n\n    import mapdl_archive\n    archive = mapdl_archive.Archive('mesh.cdb', read_parameters=True)\n\n    # parameters are stored as a dictionary\n    archive.parameters\n\n\nWriting MAPDL Archives\n----------------------\nUnstructured grids generated using VTK can be converted to ANSYS APDL archive\nfiles and loaded into any version of ANSYS using\n``mapdl_archive.save_as_archive`` in Python followed by ``CDREAD`` in MAPDL.\nThe following example using the built-in archive file demonstrates this\ncapability.\n\n.. code:: python\n\n    import pyvista as pv\n    from pyvista import examples\n    import mapdl_archive\n\n    # load in a vtk unstructured grid\n    grid = pv.UnstructuredGrid(examples.hexbeamfile)\n    script_filename = '/tmp/grid.cdb'\n    mapdl_archive.save_as_archive(script_filename, grid)\n\n    # Optionally read in archive in PyMAPDL and generate cell shape\n    # quality report\n    from ansys.mapdl.core import launch_mapdl\n    mapdl = launch_mapdl()\n    mapdl.cdread('db', script_filename)\n    mapdl.prep7()\n    mapdl.shpp('SUMM')\n\nResulting ANSYS quality report:\n\n.. code::\n\n    ------------------------------------------------------------------------------\n               <<<<<<          SHAPE TESTING SUMMARY           >>>>>>\n               <<<<<<        FOR ALL SELECTED ELEMENTS         >>>>>>\n    ------------------------------------------------------------------------------\n                       --------------------------------------\n                       |  Element count        40 SOLID185  |\n                       --------------------------------------\n   \n     Test                Number tested  Warning count  Error count    Warn+Err %\n     ----                -------------  -------------  -----------    ----------\n     Aspect Ratio                 40              0             0         0.00 %\n     Parallel Deviation           40              0             0         0.00 %\n     Maximum Angle                40              0             0         0.00 %\n     Jacobian Ratio               40              0             0         0.00 %\n     Warping Factor               40              0             0         0.00 %\n   \n     Any                          40              0             0         0.00 %\n    ------------------------------------------------------------------------------\n\n\nSupported Elements\n~~~~~~~~~~~~~~~~~~\nAt the moment, only solid elements are supported by the\n``save_as_archive`` function, to include:\n\n- ``vtk.VTK_TETRA``\n- ``vtk.VTK_QUADRATIC_TETRA``\n- ``vtk.VTK_PYRAMID``\n- ``vtk.VTK_QUADRATIC_PYRAMID``\n- ``vtk.VTK_WEDGE``\n- ``vtk.VTK_QUADRATIC_WEDGE``\n- ``vtk.VTK_HEXAHEDRON``\n- ``vtk.VTK_QUADRATIC_HEXAHEDRON``\n\nLinear element types will be written as SOLID185, quadratic elements\nwill be written as SOLID186, except for quadratic tetrahedrals, which\nwill be written as SOLID187.\n\n\nLicense and Acknowledgments\n---------------------------\nThe ``mapdl-archive`` library is licensed under the MIT license.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Pythonic interface to MAPDL archive files.",
    "version": "0.1.4",
    "project_urls": {
        "Homepage": "https://github.com/akaszynski/mapdl-archive"
    },
    "split_keywords": [
        "vtk",
        "mapdl",
        "ansys",
        "cdb"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fb7c1246eaf81ff859734da052d804641489fa40046d744ff75922449149601",
                "md5": "7f25411837594a98b4f6054367cee083",
                "sha256": "3534e07d089e0cba72c20e5dc21ef8843ac02dd194fd99642184742854b782a7"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7f25411837594a98b4f6054367cee083",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 724984,
            "upload_time": "2023-11-03T14:37:29",
            "upload_time_iso_8601": "2023-11-03T14:37:29.336448Z",
            "url": "https://files.pythonhosted.org/packages/2f/b7/c1246eaf81ff859734da052d804641489fa40046d744ff75922449149601/mapdl_archive-0.1.4-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f075446bbe4b9c8f6a21a4ddda246c4119914794af9be46bed8730c3b3d84ed8",
                "md5": "051b629c636bd959444f1035aa600872",
                "sha256": "222c0fe23416949a2117d388d7e907cdfb85b145455e4b3380aa314c117db600"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "051b629c636bd959444f1035aa600872",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 429581,
            "upload_time": "2023-11-03T14:37:31",
            "upload_time_iso_8601": "2023-11-03T14:37:31.149435Z",
            "url": "https://files.pythonhosted.org/packages/f0/75/446bbe4b9c8f6a21a4ddda246c4119914794af9be46bed8730c3b3d84ed8/mapdl_archive-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "786540f8594ff29962d0678a8c2b9252815819684b0767e940f1707cc2688f36",
                "md5": "d7b1f6e3774914b5207a7ab1086e7276",
                "sha256": "a7b918e3207d51b11ca2a64b16c0d8c65400d67960187f3db27e629e866fa2f6"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7b1f6e3774914b5207a7ab1086e7276",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1815564,
            "upload_time": "2023-11-03T14:37:33",
            "upload_time_iso_8601": "2023-11-03T14:37:33.689356Z",
            "url": "https://files.pythonhosted.org/packages/78/65/40f8594ff29962d0678a8c2b9252815819684b0767e940f1707cc2688f36/mapdl_archive-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "622de1cacebffcfead7699cf5fcc0fb2f143d53c9bc97f0f84b6ccb1a55bc11b",
                "md5": "12cefe136cadda1914edc68463beed44",
                "sha256": "a687d532b37eec2671b3408bfd204c39eb87c1b84e931d38e160efbc72d26a9f"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "12cefe136cadda1914edc68463beed44",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 383075,
            "upload_time": "2023-11-03T14:37:35",
            "upload_time_iso_8601": "2023-11-03T14:37:35.479190Z",
            "url": "https://files.pythonhosted.org/packages/62/2d/e1cacebffcfead7699cf5fcc0fb2f143d53c9bc97f0f84b6ccb1a55bc11b/mapdl_archive-0.1.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6842bf4e917a3a93094baf8f115bbd3b69c02d54d9a458f7616ec095d799e3c9",
                "md5": "f581e7188aac4757ded34621cf5c7c85",
                "sha256": "fe265dddaaadf5d9cd1cd5aa0386cba7c6548dffde82f39a862beeb27c32e5f8"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f581e7188aac4757ded34621cf5c7c85",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 725691,
            "upload_time": "2023-11-03T14:37:36",
            "upload_time_iso_8601": "2023-11-03T14:37:36.807710Z",
            "url": "https://files.pythonhosted.org/packages/68/42/bf4e917a3a93094baf8f115bbd3b69c02d54d9a458f7616ec095d799e3c9/mapdl_archive-0.1.4-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e4b8c68a73a6eab80f0f217ee82c0fe2b030e3b550a1231bb124414c57dfb74",
                "md5": "ea3619ba4ad353deea2ab4830fe6d3fa",
                "sha256": "ec3695f4177173ab383291a87dbee2ca9192ed19170055ddfc7f1ee218d80f5d"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea3619ba4ad353deea2ab4830fe6d3fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 429783,
            "upload_time": "2023-11-03T14:37:38",
            "upload_time_iso_8601": "2023-11-03T14:37:38.868309Z",
            "url": "https://files.pythonhosted.org/packages/9e/4b/8c68a73a6eab80f0f217ee82c0fe2b030e3b550a1231bb124414c57dfb74/mapdl_archive-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a64c971eaff1d45d8174db0fc1caeafab5c15196c425e37f975394e12b5dc8c",
                "md5": "b388312ddf4a9e6d49477ff25c694aca",
                "sha256": "c80ad08b8301576a023f35ce9f06855def4961613b08e51668687d7bc06c55d1"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b388312ddf4a9e6d49477ff25c694aca",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1938283,
            "upload_time": "2023-11-03T14:37:40",
            "upload_time_iso_8601": "2023-11-03T14:37:40.316368Z",
            "url": "https://files.pythonhosted.org/packages/7a/64/c971eaff1d45d8174db0fc1caeafab5c15196c425e37f975394e12b5dc8c/mapdl_archive-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d077c7b802143fa4a3ec5845e07228bb91cbc05cbf2e01a82f7d99993e9b9e0",
                "md5": "efa15f9f27497eca8fb15fa825b54512",
                "sha256": "5069e9b0e703b8ba6f80f566dd0dab9068f5f2c75048d85ea7cfbdd02958f6c0"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "efa15f9f27497eca8fb15fa825b54512",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 383443,
            "upload_time": "2023-11-03T14:37:41",
            "upload_time_iso_8601": "2023-11-03T14:37:41.768475Z",
            "url": "https://files.pythonhosted.org/packages/2d/07/7c7b802143fa4a3ec5845e07228bb91cbc05cbf2e01a82f7d99993e9b9e0/mapdl_archive-0.1.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "609862ee6d2441b439977630305d00cc0e32cff2365604ec4dda185cf75c8029",
                "md5": "a5920571d05d0cd5ae65a0370e9417db",
                "sha256": "f0c4f444b5b96e5d00646330e54fa4574922d7899a9110d6116eb7c0613bc6c6"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a5920571d05d0cd5ae65a0370e9417db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 724910,
            "upload_time": "2023-11-03T14:37:43",
            "upload_time_iso_8601": "2023-11-03T14:37:43.113421Z",
            "url": "https://files.pythonhosted.org/packages/60/98/62ee6d2441b439977630305d00cc0e32cff2365604ec4dda185cf75c8029/mapdl_archive-0.1.4-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f08619e4fa2c7167ce89015a749a968223c77b0d3bdd3c32c73741f6cd8dadc8",
                "md5": "ca571ede322bf3526475b55160f843a9",
                "sha256": "b61cfff87ac03a493f8dbd323bba2e3a1196b408452b0386e7d5ff760129e7ba"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca571ede322bf3526475b55160f843a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 429847,
            "upload_time": "2023-11-03T14:37:44",
            "upload_time_iso_8601": "2023-11-03T14:37:44.839365Z",
            "url": "https://files.pythonhosted.org/packages/f0/86/19e4fa2c7167ce89015a749a968223c77b0d3bdd3c32c73741f6cd8dadc8/mapdl_archive-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd866a0097b48a6f77ddfdd64f2e08d8218acf281cb3bab583b56c3073fb5117",
                "md5": "1a6ac071f95f55b19f695630fac638e0",
                "sha256": "ed3a76b14a88c7413cf3a7c98a3d59be94982c95c7e0b8aba28a45913ec87dc2"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a6ac071f95f55b19f695630fac638e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1923105,
            "upload_time": "2023-11-03T14:37:46",
            "upload_time_iso_8601": "2023-11-03T14:37:46.341341Z",
            "url": "https://files.pythonhosted.org/packages/bd/86/6a0097b48a6f77ddfdd64f2e08d8218acf281cb3bab583b56c3073fb5117/mapdl_archive-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfe4143a8b4b5c2241bbdb9275f6265faeaafc2be38c4967bcd7bad1f077bd2d",
                "md5": "a3f64f13cfd5a7dc537d1cb547279ae6",
                "sha256": "b5296eae2e9833a11108e9088310f5ca6591fbba8284975bb85c6ddef07274f7"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a3f64f13cfd5a7dc537d1cb547279ae6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 385230,
            "upload_time": "2023-11-03T14:37:47",
            "upload_time_iso_8601": "2023-11-03T14:37:47.936149Z",
            "url": "https://files.pythonhosted.org/packages/df/e4/143a8b4b5c2241bbdb9275f6265faeaafc2be38c4967bcd7bad1f077bd2d/mapdl_archive-0.1.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b96d8caf354996128aa51ca83e97f75fd4fc458886e666deb3bc6d9175e72af6",
                "md5": "fa421024f7f8abce7d3a51aead8e5bf1",
                "sha256": "9a04d089d30c2548993608557cf0a973833041f5d0d6a033a4447c474f1681d5"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "fa421024f7f8abce7d3a51aead8e5bf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 724054,
            "upload_time": "2023-11-03T14:37:49",
            "upload_time_iso_8601": "2023-11-03T14:37:49.308232Z",
            "url": "https://files.pythonhosted.org/packages/b9/6d/8caf354996128aa51ca83e97f75fd4fc458886e666deb3bc6d9175e72af6/mapdl_archive-0.1.4-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fcab6ff38edac85b63de4453960a21cef60ba524d14fe3e55ff5385d2878aa9",
                "md5": "dd47b0e37e479d61eb1d457ea997fa70",
                "sha256": "db8e025299a15bf00a00137183471423a956dfe99d3268368dbe96dffd982af0"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd47b0e37e479d61eb1d457ea997fa70",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 429140,
            "upload_time": "2023-11-03T14:37:50",
            "upload_time_iso_8601": "2023-11-03T14:37:50.854824Z",
            "url": "https://files.pythonhosted.org/packages/5f/ca/b6ff38edac85b63de4453960a21cef60ba524d14fe3e55ff5385d2878aa9/mapdl_archive-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fb7f42d115f42eb85352ff2b917cec4eb294abf9f0f9a242fa7528668932acb",
                "md5": "3c23fcc1bbb05c5e59217e2afaec863e",
                "sha256": "4c31ddb9c22bac154c2446302237368e891c4a1254c67215423ce982b2edf517"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c23fcc1bbb05c5e59217e2afaec863e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1861713,
            "upload_time": "2023-11-03T14:37:52",
            "upload_time_iso_8601": "2023-11-03T14:37:52.275615Z",
            "url": "https://files.pythonhosted.org/packages/2f/b7/f42d115f42eb85352ff2b917cec4eb294abf9f0f9a242fa7528668932acb/mapdl_archive-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3e6dec3ef0a6aeaa0aa13df6f8f811fbe6b1645691b75e177d839eb56e84f3f",
                "md5": "06eb621c917648a662232859d8c5ffc5",
                "sha256": "f29ff56f346d9a76c15aeb26a9918cf1c2e31615d585cd7a2fdffe05f78bce4b"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "06eb621c917648a662232859d8c5ffc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 386484,
            "upload_time": "2023-11-03T14:37:54",
            "upload_time_iso_8601": "2023-11-03T14:37:54.001712Z",
            "url": "https://files.pythonhosted.org/packages/d3/e6/dec3ef0a6aeaa0aa13df6f8f811fbe6b1645691b75e177d839eb56e84f3f/mapdl_archive-0.1.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db1bce60cb4180d7138d7aeb822616ffca6b093a6dae6ad647060f66c1d47c4c",
                "md5": "4d2635653184538411a05af67ecfe348",
                "sha256": "74e56ac487bfbe05165f2f9b089df3449583c5645a5283c3db25dd6f437cd1b9"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4d2635653184538411a05af67ecfe348",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 727042,
            "upload_time": "2023-11-03T14:37:55",
            "upload_time_iso_8601": "2023-11-03T14:37:55.483573Z",
            "url": "https://files.pythonhosted.org/packages/db/1b/ce60cb4180d7138d7aeb822616ffca6b093a6dae6ad647060f66c1d47c4c/mapdl_archive-0.1.4-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a33524763414cf0e64a04fd0c6592397617abc8aa0f32f86c07c0c66fa9e1ce4",
                "md5": "7f9ec887ea8249d7b593f5e3db93784f",
                "sha256": "e41b270d1998786ceff806763858d5d49c47d8a56bc05a8cfa4c58db1ba29408"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f9ec887ea8249d7b593f5e3db93784f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 430715,
            "upload_time": "2023-11-03T14:37:57",
            "upload_time_iso_8601": "2023-11-03T14:37:57.006156Z",
            "url": "https://files.pythonhosted.org/packages/a3/35/24763414cf0e64a04fd0c6592397617abc8aa0f32f86c07c0c66fa9e1ce4/mapdl_archive-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8700e4d0da8a4046eafad70952453b8dc85d28f4544ece03b1e9b9a97e6bb85e",
                "md5": "258f21d8503663114f1ed1b8736d3f95",
                "sha256": "c24dbf48189db52a47d4d0d19b53388dec4952787c701aaa998199f21772ae3d"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "258f21d8503663114f1ed1b8736d3f95",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1821298,
            "upload_time": "2023-11-03T14:37:58",
            "upload_time_iso_8601": "2023-11-03T14:37:58.355050Z",
            "url": "https://files.pythonhosted.org/packages/87/00/e4d0da8a4046eafad70952453b8dc85d28f4544ece03b1e9b9a97e6bb85e/mapdl_archive-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71f43b4443b2abcf3a515358990cfc3375530c5a2fa17db4c6b2d5b88e8702a2",
                "md5": "df3f5f54afc30b55128b8ab0677c2f7e",
                "sha256": "bb93a0154dfd544642a522b3cb258d2dc83010cb686022a593a40377266670d8"
            },
            "downloads": -1,
            "filename": "mapdl_archive-0.1.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df3f5f54afc30b55128b8ab0677c2f7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 383836,
            "upload_time": "2023-11-03T14:37:59",
            "upload_time_iso_8601": "2023-11-03T14:37:59.938900Z",
            "url": "https://files.pythonhosted.org/packages/71/f4/3b4443b2abcf3a515358990cfc3375530c5a2fa17db4c6b2d5b88e8702a2/mapdl_archive-0.1.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-03 14:37:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "akaszynski",
    "github_project": "mapdl-archive",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mapdl-archive"
}
        
Elapsed time: 0.13720s