Skip to main content

Pythonic interface to MAPDL archive files.

Project description

pypi GH-CI MIT

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

This is effectively 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.

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')
Hexahedral beam

You can then load this vtk file using PyVista or VTK.

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:

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.

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.

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:

------------------------------------------------------------------------------
           <<<<<<          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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mapdl-archive-0.2.7.tar.gz (155.0 kB view details)

Uploaded Source

Built Distributions

mapdl_archive-0.2.7-cp313-cp313-win_amd64.whl (279.2 kB view details)

Uploaded CPython 3.13Windows x86-64

mapdl_archive-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mapdl_archive-0.2.7-cp313-cp313-macosx_11_0_arm64.whl (264.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mapdl_archive-0.2.7-cp313-cp313-macosx_10_14_x86_64.whl (274.8 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

mapdl_archive-0.2.7-cp312-cp312-win_amd64.whl (279.2 kB view details)

Uploaded CPython 3.12Windows x86-64

mapdl_archive-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mapdl_archive-0.2.7-cp312-cp312-macosx_11_0_arm64.whl (264.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mapdl_archive-0.2.7-cp312-cp312-macosx_10_14_x86_64.whl (274.8 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

mapdl_archive-0.2.7-cp311-cp311-win_amd64.whl (282.0 kB view details)

Uploaded CPython 3.11Windows x86-64

mapdl_archive-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mapdl_archive-0.2.7-cp311-cp311-macosx_11_0_arm64.whl (268.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mapdl_archive-0.2.7-cp311-cp311-macosx_10_14_x86_64.whl (277.9 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

mapdl_archive-0.2.7-cp310-cp310-win_amd64.whl (282.4 kB view details)

Uploaded CPython 3.10Windows x86-64

mapdl_archive-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mapdl_archive-0.2.7-cp310-cp310-macosx_11_0_arm64.whl (268.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mapdl_archive-0.2.7-cp310-cp310-macosx_10_14_x86_64.whl (278.3 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

mapdl_archive-0.2.7-cp39-cp39-win_amd64.whl (283.2 kB view details)

Uploaded CPython 3.9Windows x86-64

mapdl_archive-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mapdl_archive-0.2.7-cp39-cp39-macosx_11_0_arm64.whl (268.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mapdl_archive-0.2.7-cp39-cp39-macosx_10_14_x86_64.whl (278.5 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

File details

Details for the file mapdl-archive-0.2.7.tar.gz.

File metadata

  • Download URL: mapdl-archive-0.2.7.tar.gz
  • Upload date:
  • Size: 155.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mapdl-archive-0.2.7.tar.gz
Algorithm Hash digest
SHA256 62db0f3b1b1be81caa3a0f759bca70443c1edbc09a549cc1a05c9c7af0bd16fe
MD5 a6c386852774bcf91f710a3943ff7eba
BLAKE2b-256 a2d7d8724cda0933f51559c91222c44e237cce6248cf9f2e6b83c6254b9ce993

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl-archive-0.2.7.tar.gz:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5ac9eba77aaf8448e6828c42e2cd0e1234ec06f7842fe0f61a1b05bbb04191a1
MD5 4ad93213ca516585e0a1d524470a3cb8
BLAKE2b-256 05e592a8447ae44f2b8577025428d3a1dd3bf165fc55bf71f4b0c6b7bcc35045

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp313-cp313-win_amd64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb885ea22e78d97361b8edde8a59f16899d03548a255eccce27bf64d62807856
MD5 f8079578017e71bb8f0805aae958985d
BLAKE2b-256 c40ba0ecd8a61dd7bd2eb99cf1aa5e92a56c3216fa31c831ce40a915b3d79ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3c1ddfebce3074a0fe3d374c494814cb90d9c77d1acb36b12637cd24267c3ac
MD5 9aef17bb4adc79e7d77910fa9490c83c
BLAKE2b-256 f96e64995c571fc57a867ada3ce2e0357d06d8d34d720eec147c1cfaefbd4d23

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6d291c4e0bea0d7612a4b60a7355d74d90e5bb2bb01ce1aa6ad5eeaca26f7246
MD5 30ab0260a09636666094aed4e142a171
BLAKE2b-256 990c6ea5131e08e7a17be8eb7c58c36c2d8dc6405fed37d8a159c6de02078632

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp313-cp313-macosx_10_14_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d26f3f371578876c7eaacb06489e485a777c48c487d83146782f6c500777bc2
MD5 b13883b0d803856e5627cc1730faa25d
BLAKE2b-256 d42078cd290bd8d57b8f8b73eea5afe91d9ca480a6a929d27ab35b2bfd4ec381

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp312-cp312-win_amd64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d08f882382c244e742dacfbe8ab853e1cffd5c89765ce5cafc7fd880821f7c3a
MD5 80b3a9cc61200e9c35c0565c3e02f6b0
BLAKE2b-256 d0955ea20310eecf1d75a6789a8fbf0ac4a3fa10cb66af3cae0819b934cd696c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 195bbe2da85afd32f3609f12145da3e3058799ced1c2850487e51ccd9c8ac95d
MD5 093199ecb0388ec7442d1df0912aa8b3
BLAKE2b-256 a24a6cd003b8208ef4652ff5d3c5106f2f1fa6d6171f6320dc8d3ce85630caa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4ba911e66da61665480f1c50d3a7e92f1a5d4fc6820a6c3bb4271cdec0e72aa1
MD5 2bb506acb984979183b411e39c56b8ec
BLAKE2b-256 29b39bf2c3ae90f0955c3b2ebf581f9ceff101db3c812ce17862e7da92f84135

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp312-cp312-macosx_10_14_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57335f6d4a8b8dc01c9dd3983dcc8e013f33aa00321fa04fda9415b8b72a388c
MD5 b4e12a359eb27dd31b609b0517f57991
BLAKE2b-256 7564d0be9d718a32139e676def6e0e3aa3939b523b3c42c058c1535e029b1f4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp311-cp311-win_amd64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15c763f06986bf8290fdf98c0aaea6bd643b14d7fce7ca44d072b4b00e006906
MD5 1e229f6fab01138e743c7d9de08438af
BLAKE2b-256 2bdb89268ff1b4e266cb471a975765280df2f4c96c18d9c922687bb4d05ecb66

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5c1ff2135e8da99458651f5a3494837b6beb7eea38b8c1a7700eb352702df7c
MD5 aab26cf7a053e5aea8b1be2544574caa
BLAKE2b-256 da5b3d29b017ca85321ba5649e74cf3c3e51433bd83b95efabb84204b02a05fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 198c75eb62f1e8c9e57bbee6ced2ed81f6fcc579454b706ede444e3f02a94290
MD5 18116b2f21350618f0b700b330c30a73
BLAKE2b-256 f7a45f5d2b3a092740e8551a13850f7b101763f10fc89943b5460094c1cbb9ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp311-cp311-macosx_10_14_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0517814b16092a4c6fd9bbe9d80bfcf179f1bf44ad9a6f30f4b8397413bea08f
MD5 cabd89f3138b244b7abea0f0a577a3e4
BLAKE2b-256 1ba3d2c1790c05592d96ce7f706b04ea673dede726943d92be098f3bf2979f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp310-cp310-win_amd64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3be2dca4df9c93fd68304194e62d90e7d2651a1a302cef3c7f3df9ec871d1ef5
MD5 44776753caaae8bccdb23de316d9832f
BLAKE2b-256 8ccfc50178b2527c90d28f30ec683cb84791a0b8f6f5f8c1225fc584b93efe53

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0beb03283f55cacb926a0f457dacab00e0ada0c0f21fea97e07c084282416b60
MD5 4867e44f38e264e85fbf898aa6244836
BLAKE2b-256 a7275f57afdb280db95747c8111c341ebac87e6784d3a40ee10baee11e08f18d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c93c263ee27c50b8e9ccc82db8745cecf8aadae21ee68c06a913ad237bb03494
MD5 e8247a28ea77c8355c8dc06c86233e36
BLAKE2b-256 24191f2b9c95c0c6079ed1931b6b948b171032cdb7af4563845f2e84b08314f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp310-cp310-macosx_10_14_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 33630ac16b2eadd53f7103f517fabc64f54814f05081ba164c509ae9c4ce594b
MD5 d9be7ea46451f351c931d7f869c44f2c
BLAKE2b-256 9a8ae4ca64121ed69b883c09a4d751ae1a03128f97f04f6240b3053cad85d374

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp39-cp39-win_amd64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2e7138f0718cd799cbab4472b84ff023c6c8ca6aa5a6b1af0b91984c8dadf73
MD5 86bbeb8521936d335a549e4be98a3e82
BLAKE2b-256 065f55ef37ac8c3a0b0384b1b4f780681d50247bec3af87be7fdbadbcba57c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56b1512b0db6f736c7190258c977054dc1e40da7c57e3eb8810c343dc7b0a04e
MD5 512d484762b06648eb115d191d8208fb
BLAKE2b-256 a54761efae0fd648c5b54a45b5c83ccdd792fd7e498e8455202a6a91c1ed1b7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mapdl_archive-0.2.7-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for mapdl_archive-0.2.7-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 abbc511e0cbf99ee4e6108b66b7d25359e833a0269adfab8a45621216ed795b0
MD5 6602e158e7b692acaddef8cf5938859f
BLAKE2b-256 c5058a536fca8e7885b88ca51a518636df335b7b453bfb8706a117b493ec729c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mapdl_archive-0.2.7-cp39-cp39-macosx_10_14_x86_64.whl:

Publisher: testing-and-deployment.yml on akaszynski/mapdl-archive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page