{ "info": { "author": "ETS Developers", "author_email": "mayavi-users@lists.sf.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: OS Independent", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: C", "Programming Language :: Python", "Topic :: Scientific/Engineering", "Topic :: Software Development", "Topic :: Software Development :: Libraries" ], "description": "======================================================\nMayavi: 3D visualization of scientific data in Python\n======================================================\n\nMayavi docs: http://docs.enthought.com/mayavi/mayavi/\nTVTK docs: http://docs.enthought.com/mayavi/tvtk\n\n.. image:: https://api.travis-ci.org/enthought/mayavi.png?branch=master\n :target: https://travis-ci.org/enthought/mayavi\n :alt: Build status\n\n.. image:: https://ci.appveyor.com/api/projects/status/lnb24gj70yidfnrl/branch/master\n :target: https://ci.appveyor.com/project/EnthoughtOSS/mayavi\n :alt: Appveyor build status\n\n.. image:: http://codecov.io/github/enthought/mayavi/coverage.svg?branch=master\n :target: http://codecov.io/github/enthought/mayavi?branch=master\n :alt: Code coverage status\n\nVision\n======\n\nMayavi seeks to provide easy and interactive visualization of 3D data. It does\nthis by the following:\n\n - an (optional) rich user interface with dialogs to interact with all data\n and objects in the visualization.\n\n - a simple and clean scripting interface in Python, including one-liners,\n a-la mlab, or object-oriented programming interface.\n\n - harnesses the power of the VTK toolkit without forcing you to learn it.\n\nAdditionally Mayavi strives to be a reusable tool that can be embedded in your\napplications in different ways or combined with the envisage\napplication-building framework to assemble domain-specific tools.\n\nMayavi is part of the Enthought Tool Suite (ETS).\n\n\nFeatures\n===========\n\nMayavi is a general purpose, cross-platform tool for 2-D and 3-D scientific\ndata visualization. Its features include:\n\n * Visualization of scalar, vector and tensor data in 2 and 3 dimensions\n\n * Easy scriptability using Python\n\n * Easy extendability via custom sources, modules, and data filters\n\n * Reading several file formats: VTK (legacy and XML), PLOT3D, etc.\n\n * Saving of visualizations\n\n * Saving rendered visualization in a variety of image formats\n\n * Convenient functionality for rapid scientific plotting via mlab (see mlab\n documentation)\n\n * See the Mayavi Users Guide for more information.\n\nUnlike its predecessor MayaVi1_, Mayavi has been designed with scriptability\nand extensibility in mind from the ground up. While the mayavi2 application\nis usable by itself, it may be used as an Envisage plugin which allows it to\nbe embedded in user applications natively. Alternatively, it may be used as a\nvisualization engine for any application.\n\n.. _MayaVi1: http://mayavi.sf.net\n\n\nQuick start\n===========\n\nIf you are new to mayavi it is a good idea to read the `online user manual`_\nwhich should introduce you to how to install and use it.\n\nIf you have installed `mayavi` as described in the next section, you should be\nable to launch the `mayavi2` application and also run any of the examples in\nthe examples directory.\n\n\n.. _online user manual: http://docs.enthought.com/mayavi/mayavi/\n\nInstallation\n=============\n\nBy itself Mayavi is not a difficult package to install but its dependencies\nare unfortunately rather heavy. However, many of these dependencies are now\navailable as wheels on PyPI. The two critical dependencies are,\n\n 1. VTK_\n 2. A GUI toolkit, either PyQt4_, PySide_, PySide2_, PyQt5_ or wxPython_.\n\nThe latest VTK wheels are available on all the major platforms (Windows,\nMacOS, and Linux), but only for 64 bit machines. Python 3.x is fully supported\non all these operating systems and Python 2.7.x on MacOS and Linux. If you are\nout of luck, and your platform is not supported then you will need to install\nVTK yourself using your particular distribution as discussed in the `General\nBuild and Installation instructions\n`_\n\nOn Python 3.x you will need to install PyQt5_ and wheels are available for\nthis. On 2.7.x you have more options, and can use PySide_, PyQt4_, and\nwxPython_. These can be installed from pip or from your package manager.\n\nCurrently, Mayavi itself should work with the new wxPython 4.x. However,\ntraitsui_, pyface_, and other ETS packages do not yet support it so the UI\nwill not work correctly. Older versions should work. PyQt/PySide/PySide2\nshould work largely out of the box.\n\n\n.. _PyQt5: https://pypi.org/project/PyQt5/\n.. _PySide: https://pypi.org/project/PySide\n.. _PySide2: https://wiki.qt.io/Qt_for_Python\n.. _PyQt4: https://pypi.org/project/PyQt4/\n.. _wxPython: https://pypi.org/project/wxPython/\n.. _VTK: https://www.vtk.org\n.. _traitsui: https://github.com/enthought/traitsui\n.. _pyface: https://github.com/enthought/pyface\n\nLatest stable release\n-----------------------\n\nAs of the latest release, i.e. 4.6.0 and above, if you are using Python 3.x\nand are on a 64 bit machine, installation via pip_ is the easiest and is as\nfollows::\n\n $ pip install mayavi\n\n $ pip install PyQt5\n\nThats it!\n\nIf you are unable to do this, read the documentation above and find a way to\ninstall VTK and a suitable UI toolkit and then repeat the above.\n\nIf you are interested in the jupyter notebook support as well, do the\nfollowing (after ensuring that you have jupyter installed of course)::\n\n $ jupyter nbextension install --py mayavi --user\n $ jupyter nbextension enable --py mayavi --user\n\nYou will also need to have ipywidgets_ and ipyevents_ installed. These can be\ninstalled via pip_ or your favorite package manager.\n\n.. _pip: https://pip.pypa.io/en/stable/\n.. _ipywidgets: https://ipywidgets.readthedocs.io\n.. _ipyevents: https://github.com/mwcraig/ipyevents\n\nBleeding edge\n--------------\n\nIf you want to install the latest version of Mayavi from github, you can\nsimply do the following::\n\n $ git clone https://github.com/enthought/mayavi.git\n $ cd mayavi\n $ pip install -r requirements.txt\n $ pip install PyQt5 # replace this with any supported toolkit\n $ python setup.py install # or develop\n\nAdd the jupyter nbextensions using the instructions in the section above and\nyou should be good to go.\n\nDocumentation\n==============\n\nMore documentation is available in the `online user manual`_ or in ``docs``\ndirectory of the sources. This includes a man page for the ``mayavi2``\napplication, a users guide in HTML and PDF format and documentation for\n`mlab`.\n\nMore documentation in the form of workshop/tutorial material is available\nhere:\n\n- https://github.com/prabhuramachandran/mayavi-tutorial\n- https://github.com/prabhuramachandran/mayavi-workshop\n\nTutorial Videos\n===============\n\nHere are some tutorial videos that you can watch to learn Mayavi:\n\n- SciPy 2018 Mayavi tutorial (3 hrs):\n\n - Video: https://www.youtube.com/watch?v=r6OD07Qq2mw\n - Material: https://github.com/prabhuramachandran/mayavi-tutorial\n\n\nExamples\n========\n\nExamples are all in the ``examples`` directory of the source or the git clone.\nThe docs and examples do not ship with the binary eggs. The examples directory\nalso contains some sample data.\n\n\nTest suite\n==========\n\nThe basic test suites for tvtk and mayavi can be run using nose::\n\n nosetests -v tvtk/tests\n nosetests -v mayavi\n\nThe integration tests::\n\n cd integrationtests/mayavi\n python run.py\n\n\nBug tracker, mailing list etc.\n==============================\n\nThe bug tracker is available in `github\n`_ Please provide info and details\non platform, python, vtk and gui backends and their versions. If possible, a\nsmall example replicating the the problem.\n\nIf you have questions you could ask on the `Mayavi-users mailing list\n`_. This is used by\nsome folks and is not too active. Another mailing list that may be of use is\nthe `ETS Users mailing list\n`_. This is a more general\nlist where a lot of folks experienced with the Enthought Tool Suite are\navailable.\n\nAuthors and Contributors\n========================\n\n* Core contributors:\n\n Prabhu Ramachandran: primary author.\n\n* Previous contributors:\n\n Ga\u00ebl Varoquaux: mlab, icons, many general improvements and maintenance.\n\n Deepak Surti: Upgrade to VTK 5.10.1, VTK 6.x with new pipeline.\n\n* Support and code contributions from Enthought Inc.\n\n* Patches from many people (see the release notes), including K K Rai and\n R A Ambareesha for tensor support, parametric source and image data.\n\n Many thanks to all those who have submitted bug reports and suggestions for\n further enhancements.", "description_content_type": "", "docs_url": null, "download_url": "https://www.github.com/enthought/mayavi", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://docs.enthought.com/mayavi/mayavi/", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "mayavi", "package_url": "https://pypi.org/project/mayavi/", "platform": "Windows", "project_url": "https://pypi.org/project/mayavi/", "project_urls": { "Download": "https://www.github.com/enthought/mayavi", "Homepage": "http://docs.enthought.com/mayavi/mayavi/" }, "release_url": "https://pypi.org/project/mayavi/4.7.1/", "requires_dist": null, "requires_python": "", "summary": "3D scientific data visualization library and application", "version": "4.7.1" }, "last_serial": 5564762, "releases": { "4.0.0": [], "4.1.0": [], "4.2.0": [], "4.3.0": [], "4.3.1": [ { "comment_text": "", "digests": { "md5": "93677c77f0a835537bd210c493740b03", "sha256": "5a0b573d238c271302d41de7282bec55306ef80baa8339144a5565dff5fd4831" }, "downloads": -1, "filename": "mayavi-4.3.1.tar.gz", "has_sig": false, "md5_digest": "93677c77f0a835537bd210c493740b03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7713572, "upload_time": "2014-01-30T15:01:09", "url": "https://files.pythonhosted.org/packages/e3/dd/dfa3d8e8072f92f443e33bfa5950a13305d95ef1b381c1270893f88d898b/mayavi-4.3.1.tar.gz" } ], "4.4.0": [], "4.4.1": [ { "comment_text": "", "digests": { "md5": "ab038378bf676c6790da771f34e2d663", "sha256": "af6f2dc7c3f84324de48116b13e4ca5a05daf72d24ca7e4bcdfa113cc7177688" }, "downloads": -1, "filename": "mayavi-4.4.1.tar.gz", "has_sig": false, "md5_digest": "ab038378bf676c6790da771f34e2d663", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7984490, "upload_time": "2015-05-06T14:48:08", "url": "https://files.pythonhosted.org/packages/12/0d/b9129b07139fa872707bc8049d9dec992414e9d3153ebc0c2a3715caf1fa/mayavi-4.4.1.tar.gz" } ], "4.4.2": [ { "comment_text": "", "digests": { "md5": "c24614e3325b1d848f5b3adb8dd0fe5b", "sha256": "67e8d691951356135adb77f0e9e07d18223759b53b7ed8e84e398019ed26f298" }, "downloads": -1, "filename": "mayavi-4.4.2.tar.gz", "has_sig": false, "md5_digest": "c24614e3325b1d848f5b3adb8dd0fe5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7977042, "upload_time": "2015-06-12T10:09:52", "url": "https://files.pythonhosted.org/packages/f0/82/3e5c775b87ab28e51deccdba2a1e48e09c7a840f4d3137bf9eeaa1e04859/mayavi-4.4.2.tar.gz" } ], "4.4.3": [ { "comment_text": "", "digests": { "md5": "38f0940a7d8336ae438aeaa612a592ce", "sha256": "0ce529a7f19fbde907e9b26d023ccf2356fc6797621fa95e09cc3c5b050fe6ef" }, "downloads": -1, "filename": "mayavi-4.4.3.tar.bz2", "has_sig": false, "md5_digest": "38f0940a7d8336ae438aeaa612a592ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6486311, "upload_time": "2015-08-12T12:00:02", "url": "https://files.pythonhosted.org/packages/c9/fb/f34497dedce1601aead01675f0ae3725232a4c0b8fd75330938503c8ba19/mayavi-4.4.3.tar.bz2" }, { "comment_text": "", "digests": { "md5": "5241d46886c1dbadd96f3b19710102dc", "sha256": "e7b82e0703d865a7b3761834db5aecec846f2febd85c489198bcb139ea393086" }, "downloads": -1, "filename": "mayavi-4.4.3.zip", "has_sig": false, "md5_digest": "5241d46886c1dbadd96f3b19710102dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6997835, "upload_time": "2015-08-12T12:01:36", "url": "https://files.pythonhosted.org/packages/ae/01/aa1fb00cd4f76acfed41691c7ccd82dcb9a75f27c651be763feff8c26e05/mayavi-4.4.3.zip" } ], "4.4.4": [ { "comment_text": "", "digests": { "md5": "05315d574a873c4316b6dc01973087cf", "sha256": "a776d97571dd97434da72477e3af6b61221e9214b8e0841440ecdc93199d19f0" }, "downloads": -1, "filename": "mayavi-4.4.4.tar.bz2", "has_sig": false, "md5_digest": "05315d574a873c4316b6dc01973087cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8408046, "upload_time": "2016-03-02T14:59:31", "url": "https://files.pythonhosted.org/packages/76/e2/0a2cab8d3434cfc73b945170dd5ef2cb3616418f6cf6178a4037cd2adb45/mayavi-4.4.4.tar.bz2" }, { "comment_text": "", "digests": { "md5": "31a95371bdec9affd97b178b311afb9c", "sha256": "a6cbbcf3ef6c72970f4e46a52edb18f0f7b00980932ab8c737224314b63eef10" }, "downloads": -1, "filename": "mayavi-4.4.4.tar.gz", "has_sig": false, "md5_digest": "31a95371bdec9affd97b178b311afb9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8511462, "upload_time": "2016-03-02T14:54:04", "url": "https://files.pythonhosted.org/packages/03/02/2e87f3cc288b8fc9105440ad06103591bec7b5be0eb53f24274d044ba19a/mayavi-4.4.4.tar.gz" } ], "4.5.0": [ { "comment_text": "", "digests": { "md5": "5bd57efc8fdff44ae603acdc60991c91", "sha256": "b416bf0b183628e391b73377a965c500480466f06fcf21aae547783eb40c6e49" }, "downloads": -1, "filename": "mayavi-4.5.0.tar.bz2", "has_sig": false, "md5_digest": "5bd57efc8fdff44ae603acdc60991c91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6927482, "upload_time": "2016-08-01T19:37:29", "url": "https://files.pythonhosted.org/packages/19/f6/fde2f9bde7036c25b96d66d5ccf28c3ac14e5ecea92d0e5a6a0b2613f09f/mayavi-4.5.0.tar.bz2" }, { "comment_text": "", "digests": { "md5": "4bc58e113f83e1dad38dc869fe84729c", "sha256": "363dbd127477d9a6a7558ef852ecfe48f4688c3f631c1ede2dead78115e8f0a8" }, "downloads": -1, "filename": "mayavi-4.5.0.tar.gz", "has_sig": false, "md5_digest": "4bc58e113f83e1dad38dc869fe84729c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7025931, "upload_time": "2016-08-01T19:36:55", "url": "https://files.pythonhosted.org/packages/6c/c7/3f49fe4caee7534838cbf03d8494f1f5de0d993606b02c5f90e37d69229c/mayavi-4.5.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "b26186bf2b65087bef59206733306c72", "sha256": "033851ebe50edae015f96ef2121de2cfd16ab9e96c0ee9810b889a12b96a3ef6" }, "downloads": -1, "filename": "mayavi-4.5.0.zip", "has_sig": false, "md5_digest": "b26186bf2b65087bef59206733306c72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7472315, "upload_time": "2016-08-01T19:38:40", "url": "https://files.pythonhosted.org/packages/8a/7d/3c3a7b60b5d87e69d194cc71de716178a7af165342f85083620c68d88260/mayavi-4.5.0.zip" } ], "4.6.0": [ { "comment_text": "", "digests": { "md5": "5be1efbb3b32febcef6de96bed792d87", "sha256": "19d27dad02a6dcc0aeec476bbbded9bab6fe958f4f1c824afaf58b3958ed836e" }, "downloads": -1, "filename": "mayavi-4.6.0.tar.bz2", "has_sig": false, "md5_digest": "5be1efbb3b32febcef6de96bed792d87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6973673, "upload_time": "2018-05-27T07:38:10", "url": "https://files.pythonhosted.org/packages/ff/05/1d38b1fd6ce1779e063b1f3a993552fb975e4e738ae197065f08b8c5f9fd/mayavi-4.6.0.tar.bz2" } ], "4.6.1": [ { "comment_text": "", "digests": { "md5": "71b7c069f9b6cd568d98885e01244198", "sha256": "588264ced9c05a2b178f50c78fadd51443a2a069695e787fb2dfa0aa875438c0" }, "downloads": -1, "filename": "mayavi-4.6.1.tar.bz2", "has_sig": false, "md5_digest": "71b7c069f9b6cd568d98885e01244198", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6977209, "upload_time": "2018-07-06T01:34:55", "url": "https://files.pythonhosted.org/packages/36/8f/ab9555a37ab7c30560928c2eb0a9715f4492a11536f057aada019a319661/mayavi-4.6.1.tar.bz2" } ], "4.6.2": [ { "comment_text": "", "digests": { "md5": "d6b2d51b9d9e76abe0e75ab83e1f6f08", "sha256": "7480f0f87c146888846b1a063893bb24549f4f01a4d602cf501074dda8724291" }, "downloads": -1, "filename": "mayavi-4.6.2.tar.bz2", "has_sig": false, "md5_digest": "d6b2d51b9d9e76abe0e75ab83e1f6f08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7030032, "upload_time": "2018-09-03T02:29:45", "url": "https://files.pythonhosted.org/packages/83/9e/293ba57353ed258c2f64d54bf00ca1447c1f38f4eb60d0e762ddec57bf51/mayavi-4.6.2.tar.bz2" } ], "4.7.0": [ { "comment_text": "", "digests": { "md5": "a96a8da711c28cf8a8aac27d9ee27f67", "sha256": "84c0e1c6a4e24f7f7c81e69934fa9ba45432de44e2b86171bcc2dbb983242f0b" }, "downloads": -1, "filename": "mayavi-4.7.0.tar.bz2", "has_sig": false, "md5_digest": "a96a8da711c28cf8a8aac27d9ee27f67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7039794, "upload_time": "2019-06-30T23:00:47", "url": "https://files.pythonhosted.org/packages/bb/f7/395f897f2356037ea001157f5def7586d0d461815a2778508e3561064850/mayavi-4.7.0.tar.bz2" } ], "4.7.1": [ { "comment_text": "", "digests": { "md5": "90e456058f9234f42ab0daab42cead9c", "sha256": "be51fb6f886f304f7c593c907e6a2e88d7919f8f446cdccfcd184fa35b3db724" }, "downloads": -1, "filename": "mayavi-4.7.1.tar.bz2", "has_sig": false, "md5_digest": "90e456058f9234f42ab0daab42cead9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7043164, "upload_time": "2019-07-21T21:32:02", "url": "https://files.pythonhosted.org/packages/08/ea/eb808cb4df8f92bc4d9f9a1ef14566b9b5d60370e6ecbaf9061cdae335fa/mayavi-4.7.1.tar.bz2" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "90e456058f9234f42ab0daab42cead9c", "sha256": "be51fb6f886f304f7c593c907e6a2e88d7919f8f446cdccfcd184fa35b3db724" }, "downloads": -1, "filename": "mayavi-4.7.1.tar.bz2", "has_sig": false, "md5_digest": "90e456058f9234f42ab0daab42cead9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7043164, "upload_time": "2019-07-21T21:32:02", "url": "https://files.pythonhosted.org/packages/08/ea/eb808cb4df8f92bc4d9f9a1ef14566b9b5d60370e6ecbaf9061cdae335fa/mayavi-4.7.1.tar.bz2" } ] }