1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
Metadata-Version: 2.4
Name: vispy
Version: 0.15.2
Summary: Interactive visualization in Python
Home-page: http://vispy.org
Download-URL: https://pypi.python.org/pypi/vispy
Author: Vispy contributors
Author-email: vispy@googlegroups.com
License: BSD-3-Clause
Keywords: visualization,OpenGl,ES,medical,imaging,3D,plotting,numpy,bigdata,ipython,jupyter,widgets
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Framework :: IPython
Provides: vispy
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: numpy
Requires-Dist: freetype-py
Requires-Dist: hsluv
Requires-Dist: kiwisolver
Requires-Dist: packaging
Provides-Extra: ipython-static
Requires-Dist: ipython; extra == "ipython-static"
Provides-Extra: pyglet
Requires-Dist: pyglet>=1.2; extra == "pyglet"
Provides-Extra: pyqt5
Requires-Dist: pyqt5; extra == "pyqt5"
Provides-Extra: pyqt6
Requires-Dist: pyqt6; extra == "pyqt6"
Provides-Extra: pyside
Requires-Dist: PySide; extra == "pyside"
Provides-Extra: pyside2
Requires-Dist: PySide2; extra == "pyside2"
Provides-Extra: pyside6
Requires-Dist: PySide6; extra == "pyside6"
Provides-Extra: glfw
Requires-Dist: glfw; extra == "glfw"
Provides-Extra: sdl2
Requires-Dist: PySDL2; extra == "sdl2"
Provides-Extra: wx
Requires-Dist: wxPython; extra == "wx"
Provides-Extra: tk
Requires-Dist: pyopengltk; extra == "tk"
Provides-Extra: doc
Requires-Dist: pydata-sphinx-theme; extra == "doc"
Requires-Dist: numpydoc; extra == "doc"
Requires-Dist: sphinxcontrib-apidoc; extra == "doc"
Requires-Dist: sphinx-gallery; extra == "doc"
Requires-Dist: myst-parser; extra == "doc"
Requires-Dist: pillow; extra == "doc"
Requires-Dist: pytest; extra == "doc"
Requires-Dist: pyopengl; extra == "doc"
Provides-Extra: io
Requires-Dist: meshio; extra == "io"
Requires-Dist: Pillow; extra == "io"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-sugar; extra == "test"
Requires-Dist: meshio; extra == "test"
Requires-Dist: pillow; extra == "test"
Requires-Dist: sphinx_gallery; extra == "test"
Requires-Dist: imageio; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: provides
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary
VisPy: interactive scientific visualization in Python
-----------------------------------------------------
Main website: http://vispy.org
|Build Status| |Coverage Status| |Zenodo Link| |Contributor Covenant|
----
VisPy is a **high-performance interactive 2D/3D data visualization
library**. VisPy leverages the computational power of modern **Graphics
Processing Units (GPUs)** through the **OpenGL** library to display very
large datasets. Applications of VisPy include:
- High-quality interactive scientific plots with millions of points.
- Direct visualization of real-time data.
- Fast interactive visualization of 3D models (meshes, volume
rendering).
- OpenGL visualization demos.
- Scientific GUIs with fast, scalable visualization widgets (`Qt <http://www.qt.io>`__ or
`IPython notebook <http://ipython.org/notebook.html>`__ with WebGL).
Releases
--------
See `CHANGELOG.md <./CHANGELOG.md>`_.
Announcements
-------------
See the `VisPy Website <https://vispy.org/news.html>`_.
Using VisPy
-----------
VisPy is a young library under heavy development at this time. It
targets two categories of users:
1. **Users knowing OpenGL**, or willing to learn OpenGL, who want to
create beautiful and fast interactive 2D/3D visualizations in Python
as easily as possible.
2. **Scientists without any knowledge of OpenGL**, who are seeking a
high-level, high-performance plotting toolkit.
If you're in the first category, you can already start using VisPy.
VisPy offers a Pythonic, NumPy-aware, user-friendly interface for OpenGL
ES 2.0 called **gloo**. You can focus on writing your GLSL code instead
of dealing with the complicated OpenGL API - VisPy takes care of that
automatically for you.
If you're in the second category, we're starting to build experimental
high-level plotting interfaces. Notably, VisPy now ships a very basic
and experimental OpenGL backend for matplotlib.
Installation
------------
Please follow the detailed
`installation instructions <http://vispy.org/installation.html>`_
on the VisPy website.
Structure of VisPy
------------------
Currently, the main subpackages are:
- **app**: integrates an event system and offers a unified interface on
top of many window backends (Qt4, wx, glfw, jupyter notebook,
and others). Relatively stable API.
- **gloo**: a Pythonic, object-oriented interface to OpenGL. Relatively
stable API.
- **scene**: this is the system underlying our upcoming high level
visualization interfaces. Under heavy development and still
experimental, it contains several modules.
- **Visuals** are graphical abstractions representing 2D shapes, 3D
meshes, text, etc.
- **Transforms** implement 2D/3D transformations implemented on both
CPU and GPU.
- **Shaders** implements a shader composition system for plumbing
together snippets of GLSL code.
- The **scene graph** tracks all objects within a transformation
graph.
- **plot**: high-level plotting interfaces.
The API of all public interfaces are subject to change in the future,
although **app** and **gloo** are *relatively* stable at this point.
Code of Conduct
---------------
The VisPy community requires its members to abide by the
`Code of Conduct <./CODE_OF_CONDUCT.md>`_. In this CoC you will find the
expectations of members, the penalties for violating these expectations, and
how violations can be reported to the members of the community in charge of
enforcing this Code of Conduct.
Governance
----------
The VisPy project maintainers make decisions about the project based on a
simple consensus model. This is described in more detail on the
`governance page <https://vispy.org/governance/GOVERNANCE.html>`_ of the vispy
website as well as the
`list of maintainers <https://vispy.org/governance/MAINTAINERS.html>`_.
In addition to decisions about the VisPy project, there is also a steering
committee for the overall VisPy organization. More information about this
committee can also be found on the `steering committee page <https://vispy.org/org/STEERING-COMMITTEE.html>`_
of the vispy website,
along with the organization's `charter <https://vispy.org/org/CHARTER.html>`_ and
other related documents (linked in the charter).
Genesis
-------
VisPy began when four developers with their own visualization libraries
decided to team up:
`Luke Campagnola <http://luke.campagnola.me/>`__ with `PyQtGraph <http://www.pyqtgraph.org/>`__,
`Almar Klein <http://www.almarklein.org/>`__ with `Visvis <https://github.com/almarklein/visvis>`__,
`Cyrille Rossant <http://cyrille.rossant.net>`__ with `Galry <https://github.com/rossant/galry>`__,
`Nicolas Rougier <http://www.loria.fr/~rougier/index.html>`__ with `Glumpy <https://github.com/rougier/Glumpy>`__.
Now VisPy looks to build on the expertise of these developers and the
broader open-source community to build a high-performance OpenGL library.
----
External links
--------------
- `User mailing
list <https://groups.google.com/forum/#!forum/vispy>`__
- `Dev mailing
list <https://groups.google.com/forum/#!forum/vispy-dev>`__
- `Chat room <https://gitter.im/vispy/vispy>`__
- `Developer chat room <https://gitter.im/vispy/vispy-dev>`__
- `Wiki <http://github.com/vispy/vispy/wiki>`__
- `Gallery <http://vispy.org/gallery/index.html>`__
- `Documentation <http://vispy.readthedocs.org>`__
.. |Build Status| image:: https://github.com/vispy/vispy/workflows/CI/badge.svg
:target: https://github.com/vispy/vispy/actions
.. |Coverage Status| image:: https://img.shields.io/coveralls/vispy/vispy/main.svg
:target: https://coveralls.io/r/vispy/vispy?branch=main
.. |Zenodo Link| image:: https://zenodo.org/badge/5822/vispy/vispy.svg
:target: http://dx.doi.org/10.5281/zenodo.17869
.. |Contributor Covenant| image:: https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg
:target: CODE_OF_CONDUCT.md
|