Skip to main content

3D scientific data visualization library and application

Project description

====================================================== Mayavi: 3D visualization of scientific data in Python

Mayavi docs: http://docs.enthought.com/mayavi/mayavi/ TVTK docs: http://docs.enthought.com/mayavi/tvtk

.. image:: https://img.shields.io/pypi/v/mayavi.svg :target: https://pypi.org/project/mayavi/ :alt: Package on PyPI

.. image:: https://img.shields.io/badge/License-BSD%203--Clause-blue.svg :target: https://opensource.org/licenses/BSD-3-Clause :alt: BSD 3 Clause

Vision

Mayavi seeks to provide easy and interactive visualization of 3D data. It does this by the following:

- an (optional) rich user interface with dialogs to interact with all data
  and objects in the visualization.

- a simple and clean scripting interface in Python, including one-liners,
  a-la mlab, or object-oriented programming interface.

- harnesses the power of the VTK toolkit without forcing you to learn it.

Additionally Mayavi strives to be a reusable tool that can be embedded in your applications in different ways or combined with the envisage application-building framework to assemble domain-specific tools.

Mayavi is part of the Enthought Tool Suite (ETS).

Features

Mayavi is a general purpose, cross-platform tool for 2-D and 3-D scientific data visualization. Its features include:

* Visualization of scalar, vector and tensor data in 2 and 3 dimensions

* Easy scriptability using Python

* Easy extendability via custom sources, modules, and data filters

* Reading several file formats: VTK (legacy and XML), PLOT3D, etc.

* Saving of visualizations

* Saving rendered visualization in a variety of image formats

* Convenient functionality for rapid scientific plotting via mlab (see mlab
  documentation)

* See the Mayavi Users Guide for more information.

Unlike its predecessor MayaVi1_, Mayavi has been designed with scriptability and extensibility in mind from the ground up. While the mayavi2 application is usable by itself, it may be used as an Envisage plugin which allows it to be embedded in user applications natively. Alternatively, it may be used as a visualization engine for any application.

.. _MayaVi1: http://mayavi.sf.net

Quick start

If you are new to Mayavi it is a good idea to read the online user manual_ which should introduce you to how to install and use it.

If you have installed Mayavi as described in the next section, you should be able to launch the mayavi2 application and also run any of the examples in the examples directory.

.. _online user manual: http://docs.enthought.com/mayavi/mayavi/

Installation

By itself Mayavi is not a difficult package to install but its dependencies are unfortunately rather heavy. However, many of these dependencies are now available as wheels on PyPI. The two critical dependencies are,

  1. VTK_ >= 9.0
  2. A GUI toolkit, either PySide6_, PyQt6_, PySide2_, PyQt5_, or wxPython_.

The latest VTK wheels are available on all the major platforms (Windows, MacOS, and Linux). If you are out of luck, and your platform is not supported then you will need to install VTK yourself using your particular distribution as discussed in the General Build and Installation instructions <http://docs.enthought.com/mayavi/mayavi/installation.html#installing-ready-made-distributions>_

On Python 3.x you will need to install PyQt5_ and wheels are available for this. On 2.7.x you have more options, and can use PySide_, PyQt4_, and wxPython_. These can be installed from pip or from your package manager.

Currently, Mayavi itself should work with the new wxPython 4.x. However, traitsui_, pyface_, and other ETS packages do not yet support it so the UI will not work correctly. Older versions should work. PyQt/PySide/PySide2 should work largely out of the box.

.. _PyQt5: https://pypi.org/project/PyQt5/ .. _PySide: https://pypi.org/project/PySide .. _PySide2: https://wiki.qt.io/Qt_for_Python .. _PyQt4: https://pypi.org/project/PyQt4/ .. _wxPython: https://pypi.org/project/wxPython/ .. _VTK: https://www.vtk.org .. _traitsui: https://github.com/enthought/traitsui .. _pyface: https://github.com/enthought/pyface

Latest stable release

As of the latest release, i.e. 4.6.0 and above, if you are using Python 3.x and are on a 64 bit machine, installation via pip_ is the easiest and is as follows::

$ pip install mayavi

$ pip install PyQt5

Thats it!

If you are unable to do this, read the documentation above and find a way to install VTK and a suitable UI toolkit and then repeat the above.

If you are interested in the jupyter notebook support as well, do the following (after ensuring that you have jupyter installed of course. Note, the Jupyter notebook function is only supported starting mayavi version 4.5.0)::

$ jupyter nbextension install --py mayavi --user $ jupyter nbextension enable --py mayavi --user

You will also need to have ipywidgets_ and ipyevents_ installed. These can be installed via pip_ or your favorite package manager.

.. _pip: https://pip.pypa.io/en/stable/ .. _ipywidgets: https://ipywidgets.readthedocs.io .. _ipyevents: https://github.com/mwcraig/ipyevents

Bleeding edge

If you want to install the latest version of Mayavi from github, you can simply do the following::

$ git clone https://github.com/enthought/mayavi.git $ cd mayavi $ pip install -r requirements.txt $ pip install PyQt5 # replace this with any supported toolkit $ python setup.py install # or develop

Add the jupyter nbextensions using the instructions in the section above and you should be good to go.

Documentation

More documentation is available in the online user manual_ or in docs directory of the sources. This includes a man page for the mayavi2 application, a users guide in HTML and PDF format and documentation for mlab.

More documentation in the form of workshop/tutorial material is available here:

Tutorial Videos

Here are some tutorial videos that you can watch to learn Mayavi:

Examples

Examples are all in the examples directory of the source or the git clone. The docs and examples do not ship with the binary eggs. The examples directory also contains some sample data.

Test suite

The basic test suites for tvtk and mayavi can be run using nose::

pytest -v tvtk/tests pytest -v mayavi

The integration tests::

cd integrationtests/mayavi python run.py

Bug tracker, mailing list etc.

The bug tracker is available in github <https://github.com/enthought/mayavi/issues>_ Please provide info and details on platform, python, vtk and gui backends and their versions. If possible, a small example replicating the the problem.

If you have questions you could ask on the Mayavi-users mailing list <https://sourceforge.net/p/mayavi/mailman/mayavi-users/>. This is used by some folks and is not too active. Another mailing list that may be of use is the ETS Users mailing list <https://groups.google.com/forum/#!forum/ets-users>. This is a more general list where a lot of folks experienced with the Enthought Tool Suite are available.

Authors and Contributors

  • Core contributors:

    Prabhu Ramachandran: primary author.

  • Previous contributors:

    Gaël Varoquaux: mlab, icons, many general improvements and maintenance.

    Deepak Surti: Upgrade to VTK 5.10.1, VTK 6.x with new pipeline.

  • Support and code contributions from Enthought Inc.

  • Patches from many people (see the release notes), including K K Rai and R A Ambareesha for tensor support, parametric source and image data.

    Many thanks to all those who have submitted bug reports and suggestions for further enhancements.

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

mayavi_dev-4.8.3.dev0.tar.gz (7.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mayavi_dev-4.8.3.dev0-cp313-cp313-win_amd64.whl (19.3 MB view details)

Uploaded CPython 3.13Windows x86-64

mayavi_dev-4.8.3.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mayavi_dev-4.8.3.dev0-cp313-cp313-macosx_11_0_arm64.whl (17.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mayavi_dev-4.8.3.dev0-cp313-cp313-macosx_10_13_x86_64.whl (19.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mayavi_dev-4.8.3.dev0-cp312-cp312-win_amd64.whl (17.2 MB view details)

Uploaded CPython 3.12Windows x86-64

mayavi_dev-4.8.3.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mayavi_dev-4.8.3.dev0-cp312-cp312-macosx_11_0_arm64.whl (17.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mayavi_dev-4.8.3.dev0-cp312-cp312-macosx_10_13_x86_64.whl (19.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mayavi_dev-4.8.3.dev0-cp311-cp311-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.11Windows x86-64

mayavi_dev-4.8.3.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mayavi_dev-4.8.3.dev0-cp311-cp311-macosx_11_0_arm64.whl (17.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mayavi_dev-4.8.3.dev0-cp311-cp311-macosx_10_9_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mayavi_dev-4.8.3.dev0-cp310-cp310-win_amd64.whl (17.2 MB view details)

Uploaded CPython 3.10Windows x86-64

mayavi_dev-4.8.3.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mayavi_dev-4.8.3.dev0-cp310-cp310-macosx_11_0_arm64.whl (17.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mayavi_dev-4.8.3.dev0-cp310-cp310-macosx_10_9_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mayavi_dev-4.8.3.dev0-cp39-cp39-win_amd64.whl (17.2 MB view details)

Uploaded CPython 3.9Windows x86-64

mayavi_dev-4.8.3.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mayavi_dev-4.8.3.dev0-cp39-cp39-macosx_11_0_arm64.whl (17.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mayavi_dev-4.8.3.dev0-cp39-cp39-macosx_10_9_x86_64.whl (17.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file mayavi_dev-4.8.3.dev0.tar.gz.

File metadata

  • Download URL: mayavi_dev-4.8.3.dev0.tar.gz
  • Upload date:
  • Size: 7.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for mayavi_dev-4.8.3.dev0.tar.gz
Algorithm Hash digest
SHA256 09e9fa48dcb1a78d623c6630898946176d7c7c91ba74d8a79086f61845f50470
MD5 6b056073e9638cceb4e6bf6c934d3014
BLAKE2b-256 097dc44d0464a0c8ac854ce010f6b6d4e4b3bcfe90a7f25ced550f47b2b8524e

See more details on using hashes here.

File details

Details for the file mayavi_dev-4.8.3.dev0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4bfdcb716454e94831735cbe6cf1f7582f4bc26508d800b4f7a8a5905462824b
MD5 c2b7ade96772467afd8dc44314bdc3a8
BLAKE2b-256 c1041b2443b60016c8d12fc327eeaa4273031d3cf4a7d74bf8368bc642875b47

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fecfe23d75f5462677906ed2c30d0064757a63cacb2a421429cdfd0548b24caa
MD5 23d04886dad44f1190e3dbd22b976d7e
BLAKE2b-256 40dac0475c8662d4929d1937cb9d9417a4093cb6081f10c5e13dbf658a472335

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54c457b3122111b42c9c59f521c20f38ab932543248dd0f0f528686a5f5035af
MD5 a50ed482f6df6e1dcd077bc784664e31
BLAKE2b-256 b0b63ab6f1f1a76d4b0de439c9c541bfd0710a9dbed30162ce3bc03aac9c5a75

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec5d8d6e7e1e2308a5e0838630991248382852ae68f79989f9f4f064e6cf0b84
MD5 29925efc47b4f24428deb7c2b660ab81
BLAKE2b-256 97a1d22b10a11a27efe3816a90425542234366cdc530a7928e6819e99d4aec62

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6fa675833fc9881646b781dd443745e5b1c9a5ec4f658550cc4a97d84b82b03f
MD5 2cb39d50102c4b16174723ce25d9c3b8
BLAKE2b-256 382db66b8185c36a44603fbf77a2988652e15f9ef0b16e8cb36d60b7a8e47d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dbf9cd1b42baed743a1c7c92f298ae342b0c38fcb5e1eeb7e839ec8f455a1ec
MD5 17c3fc7a47af015ceeee345959749501
BLAKE2b-256 d1c9026703784c6528b1d233bc801d8c1e9a3c42e1726ec2696627002bf95994

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6783f634f196b6424a9a8af7dfdff6d678ab110df017eb8d56b5f989baefecbf
MD5 32c4fc8fd83773a82bc06173144826dc
BLAKE2b-256 ce6351b5be68db2cbad8203bf47fb9a4d72698b03b2718ce7eb496e41740f69d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b337cf7cd99589731f130e5e9796f3ed9e2fc3cb4844306ad28a5da268fbb566
MD5 93ec7c54f004bae894ec64199c8056ef
BLAKE2b-256 efe94d98bc45d82d522fd02b13da9c6882faaf4c44af42d11af269b1cf6509e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f7ab430179d445c7b475e5c2ce0c1a5dcbe9a014103f4682dff0705357e99888
MD5 25a0edcbcb5873d8c6b934569b18dafe
BLAKE2b-256 97b276c8c369fc04bbdbae60d7b83db0e3693c76452d8549198637960c06d3e5

See more details on using hashes here.

File details

Details for the file mayavi_dev-4.8.3.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d094207f27ffeccd312f066a75b715ea126091312cf374bba00a54518c2e892
MD5 7d037631d58e38cd6ba4e450a64d8b7f
BLAKE2b-256 be47c411c2d0815ff6ba8208d1372209750215cbc302b8a08337a52339f7dc27

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6268f1ea321e14b1966f3c4cccb2f5fc88953cae5f6ba5848516817b41050390
MD5 8f7121a28459a5f0ed67c6ab027ac6aa
BLAKE2b-256 36e4489a13edaa9b932509485a233d3a95862d75774e45d9d125207e48cf5eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05191c67a35f253f57d82dc4ae6396e1bdde92eae1d2adf908592cfc12745d73
MD5 8481e4318e41874a942858a3a2f65e30
BLAKE2b-256 31172fda6c0383979fb77037c5cbe30a542ff010b74fe2ae6a07032fb45655cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1806ba0b37154f31703881b9c863d29da88ce5d48835c62fbc5101c04f8c084a
MD5 fda3714d398663874e25e301dc7e86ce
BLAKE2b-256 8c0b57298ebb46a072a9e3c3b650e0a197b311376c623f44118b20c97ad78aff

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5796e0e4e677f26e6304c8279403325c29eae74758636bab97c5ec8adb5bbbad
MD5 d894b8a2c2a4ca9a06b7eb25fa35ac13
BLAKE2b-256 299c825b38422bcd2897067ea3e6f64deb240e68138398487086e6d3b2b531d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2adadbcee388e9a36bfa551d7320bc74f5eb1a1b31d5836ec71ea1b60b1ee230
MD5 7881825c96ca3b527e547367df99bd14
BLAKE2b-256 2130eb026986e6249a8ef5fa6378ca74cd803eed177bdd4ad189f4cf55cd237d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2e44f6c6e46374adf9e3807fbb3326a4dd67aee8b5c87681443e7fa6493bcdc
MD5 84aeb4932199f98a12980ca70f4647a3
BLAKE2b-256 5fdcd253a7f302b2a4fd82dc6242b338fd4b5600f2b8a26109bf88a034ff6867

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8b0da763c5dab8279bcf74c413831d6eaa470218e229291384e939000472db92
MD5 66dbf1fb59f240d6ce3d6d4ff35193fd
BLAKE2b-256 bd5a62b4857025d62a65563ab116459f635e308ddd14cb57758bd3731ed3e4db

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b65f11fcc9e433b7b1daf25504351f6a85911da58522273c4a4f738eb9f7b01
MD5 ce63c1914f17d274d39798fdc5c9b730
BLAKE2b-256 931baa9f16b27bbb65ccd935d349bd93cbde5b6c3853e581369454f1081a5dca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3b793f4432637c6466e311816ab2604fe67af78df6f9a801e22fcbcb0556773
MD5 9064bf1248a145119d8cfc47ff332655
BLAKE2b-256 0513d35ef620b5abe789fb8d0e6ccaa6517a497a6463479b70148fc67d09f424

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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

File details

Details for the file mayavi_dev-4.8.3.dev0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mayavi_dev-4.8.3.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 732bc6052c6656818eaddcc5d43986675750242ad8a69966d37ced04181bddb9
MD5 fd59f3e86dd0746beabe5dec057c53cf
BLAKE2b-256 f2b13d679739018d0f21f9c0c2badabf17129e30cac26c1408db8991470ca8a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mayavi_dev-4.8.3.dev0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on JLBegin/mayavi-dev

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page