{ "info": { "author": "Vispy contributors", "author_email": "vispy@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Framework :: IPython", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Visualization" ], "description": "VisPy: interactive scientific visualization in Python\n-----------------------------------------------------\n\nMain website: http://vispy.org\n\n|Build Status| |Appveyor Status| |Coverage Status| |Zenodo Link|\n\n----\n\nVisPy is a **high-performance interactive 2D/3D data visualization\nlibrary**. VisPy leverages the computational power of modern **Graphics\nProcessing Units (GPUs)** through the **OpenGL** library to display very\nlarge datasets. Applications of VisPy include:\n\n- High-quality interactive scientific plots with millions of points.\n- Direct visualization of real-time data.\n- Fast interactive visualization of 3D models (meshes, volume\n rendering).\n- OpenGL visualization demos.\n- Scientific GUIs with fast, scalable visualization widgets (`Qt `__ or\n `IPython notebook `__ with WebGL).\n\n\nAnnouncements\n-------------\n\n- **Release!** Version 0.6.0, July 11, 2019\n- **Release!** Version 0.5.3, March 28, 2018\n- **Release!** Version 0.5.2, December 11, 2017\n- **Release!** Version 0.5.1, November 4, 2017\n- **Release!** Version 0.5, October 24, 2017\n- **Release!** Version 0.4, May 22, 2015\n- `VisPy tutorial in the IPython Cookbook `__\n- **Release!** Version 0.3, August 29, 2014\n- **EuroSciPy 2014**: talk at Saturday 30, and sprint at Sunday 31, August 2014\n- `Article in Linux Magazine, French Edition `__, July 2014\n- **GSoC 2014**: `two GSoC students are currently working on VisPy under the PSF umbrella `__\n- **Release!**, Version 0.2.1 04-11-2013\n- **Presentation at BI forum**, Budapest, 6 November 2013\n- **Presentation at Euroscipy**, Belgium, August 2013\n- **EuroSciPy Sprint**, Belgium, August 2013\n- **Release!** Version 0.1.0 14-08-2013\n\n\nUsing VisPy\n-----------\n\nVisPy is a young library under heavy development at this time. It\ntargets two categories of users:\n\n1. **Users knowing OpenGL**, or willing to learn OpenGL, who want to\n create beautiful and fast interactive 2D/3D visualizations in Python\n as easily as possible.\n2. **Scientists without any knowledge of OpenGL**, who are seeking a\n high-level, high-performance plotting toolkit.\n\nIf you're in the first category, you can already start using VisPy.\nVisPy offers a Pythonic, NumPy-aware, user-friendly interface for OpenGL\nES 2.0 called **gloo**. You can focus on writing your GLSL code instead\nof dealing with the complicated OpenGL API - VisPy takes care of that\nautomatically for you.\n\nIf you're in the second category, we're starting to build experimental\nhigh-level plotting interfaces. Notably, VisPy now ships a very basic\nand experimental OpenGL backend for matplotlib.\n\n\nInstallation\n------------\n\nVisPy runs on Python 2.7+ and Python 3.3+ and depends on NumPy. You also\nneed a backend (PyQt4/PySide, PyQt5/PySide2, glfw, pyglet, SDL, or wx).\n\nPyQt5/PySide2 should be considered more experimental than PyQt4/PySide.\n\nVisPy can be installed either via `pip`:\n\n```\npip install vispy\n```\n\nor within the `Anaconda `_ Python\ndistribution. Anaconda provides a convenient package management system.\nInstalling VisPy can then easily be achieved by adding `conda-forge` to the\nchannels with:\n\n```\nconda config --add channels conda-forge\n```\n\nOnce the `conda-forge` channel has been enabled, `vispy` can be installed with:\n\n```\nconda install vispy\n```\n\nDevelopment Installation\n------------------------\n\nAs VisPy is under heavy development at this time, we highly recommend\ndevelopers to use the development version on Github (master branch). You need\nto clone the repository and install VisPy with\n``python setup.py install``.\n\nAs a one-liner, assuming `git` is installed::\n\n git clone --recurse-submodules https://github.com/vispy/vispy.git && cd vispy && python setup.py install --user\n\nThis will automatically install the latest version of vispy.\n\nIf you already have vispy cloned, you may need to update the git submodules\nto make sure you have the newest code::\n\n git pull\n git submodule update --init --recursive\n\nStructure of VisPy\n------------------\n\nCurrently, the main subpackages are:\n\n- **app**: integrates an event system and offers a unified interface on\n top of many window backends (Qt4, wx, glfw, IPython notebook\n with/without WebGL, and others). Relatively stable API.\n- **gloo**: a Pythonic, object-oriented interface to OpenGL. Relatively\n stable API.\n- **scene**: this is the system underlying our upcoming high level\n visualization interfaces. Under heavy development and still\n experimental, it contains several modules.\n\n - **Visuals** are graphical abstractions representing 2D shapes, 3D\n meshes, text, etc.\n - **Transforms** implement 2D/3D transformations implemented on both\n CPU and GPU.\n - **Shaders** implements a shader composition system for plumbing\n together snippets of GLSL code.\n - The **scene graph** tracks all objects within a transformation\n graph.\n- **plot**: high-level plotting interfaces.\n\nThe API of all public interfaces are subject to change in the future,\nalthough **app** and **gloo** are *relatively* stable at this point.\n\n\nGenesis\n-------\n\nVisPy began when four developers with their own visualization libraries\ndecided to team up:\n`Luke Campagnola `__ with `PyQtGraph `__,\n`Almar Klein `__ with `Visvis `__,\n`Cyrille Rossant `__ with `Galry `__,\n`Nicolas Rougier `__ with `Glumpy `__.\n\nNow VisPy looks to build on the expertise of these developers and the\nbroader open-source community to build a high-performance OpenGL library.\n\n----\n\nExternal links\n--------------\n\n- `User mailing\n list `__\n- `Dev mailing\n list `__\n- `Dev chat room `__\n- `Wiki `__\n- `Gallery `__\n- `Documentation `__\n\n.. |Build Status| image:: https://travis-ci.org/vispy/vispy.svg?branch=master\n :target: https://travis-ci.org/vispy/vispy\n.. |Appveyor Status| image:: https://ci.appveyor.com/api/projects/status/v09sc8ua4ju2ngyy/branch/master?svg=true\n :target: https://ci.appveyor.com/project/vispy/vispy/branch/master\n.. |Coverage Status| image:: https://img.shields.io/coveralls/vispy/vispy/master.svg\n :target: https://coveralls.io/r/vispy/vispy?branch=master\n.. |Zenodo Link| image:: https://zenodo.org/badge/5822/vispy/vispy.svg\n :target: http://dx.doi.org/10.5281/zenodo.17869\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://pypi.python.org/pypi/vispy", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://vispy.org", "keywords": "visualization,OpenGl,ES,medical,imaging,3D,plotting,numpy,bigdata,ipython,jupyter,widgets", "license": "(new) BSD", "maintainer": "", "maintainer_email": "", "name": "vispy", "package_url": "https://pypi.org/project/vispy/", "platform": "any", "project_url": "https://pypi.org/project/vispy/", "project_urls": { "Download": "https://pypi.python.org/pypi/vispy", "Homepage": "http://vispy.org" }, "release_url": "https://pypi.org/project/vispy/0.6.1/", "requires_dist": [ "numpy", "freetype-py", "sphinx-bootstrap-theme ; extra == 'doc'", "numpydoc ; extra == 'doc'", "ipython ; extra == 'ipython-static'", "ipython (>=7) ; extra == 'ipython-vnc'", "ipywidgets (>=7.0) ; extra == 'ipython-webgl'", "ipython (>=7) ; extra == 'ipython-webgl'", "tornado ; extra == 'ipython-webgl'", "pyglet (>=1.2) ; extra == 'pyglet'", "pyqt5 ; extra == 'pyqt5'", "PySide ; extra == 'pyside'", "PySide2 ; extra == 'pyside2'", "PySDL2 ; extra == 'sdl2'", "wxPython ; extra == 'wx'" ], "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "summary": "Interactive visualization in Python", "version": "0.6.1" }, "last_serial": 5595571, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "4aa85e1bf3bf0c8ccdfbfd29db96612e", "sha256": "35c97bfb126a94ef22bcbfb06efa773fa293a5013f14492e6ed8ef8ac43e3d04" }, "downloads": -1, "filename": "vispy-0.1.0.tar.gz", "has_sig": false, "md5_digest": "4aa85e1bf3bf0c8ccdfbfd29db96612e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 826018, "upload_time": "2013-08-14T12:11:16", "url": "https://files.pythonhosted.org/packages/b0/85/2615ca56954bbcb157e03aee95861943a770665ef839ebc684aaeaf97ac6/vispy-0.1.0.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "3bc4ef71b9b6bdca15c6f41ed67bcb3a", "sha256": "a6d7e97e419584ac4aa77c550b38143ede4c71ae61a9cdd594fdfa3d80680b3d" }, "downloads": -1, "filename": "vispy-0.2.tar.gz", "has_sig": false, "md5_digest": "3bc4ef71b9b6bdca15c6f41ed67bcb3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190287, "upload_time": "2013-11-04T08:21:47", "url": "https://files.pythonhosted.org/packages/05/2f/d576560a42c1131ea535eef2636195de94e88cc20e7bef894792f31846d0/vispy-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "0f6dc78f0f546d03156caa8d75301caa", "sha256": "8eb0ccdbeca54978cb630d8d4d7bd097b4bf4c6f3e7be1e88fa503f258afce85" }, "downloads": -1, "filename": "vispy-0.2.1.tar.gz", "has_sig": false, "md5_digest": "0f6dc78f0f546d03156caa8d75301caa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190294, "upload_time": "2013-11-04T08:28:30", "url": "https://files.pythonhosted.org/packages/1b/92/3acac49d4bed2d7d83d1f3872eb0f7ae3512282c3a97dac03c13718a907f/vispy-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "77e6a198c3edac005aaec1153460489c", "sha256": "894a82424acf46e34c272aaaeb28b50b3f4ed72055bd6de48c9a41b531ebf510" }, "downloads": -1, "filename": "vispy-0.3.0.tar.gz", "has_sig": false, "md5_digest": "77e6a198c3edac005aaec1153460489c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 427704, "upload_time": "2014-08-29T23:27:43", "url": "https://files.pythonhosted.org/packages/29/da/f1bbdb215424dff73f4c51f6f5343338e046fe8262cdddb05fadc55aa91b/vispy-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "d50105c5ef37f43956f097bb2786d516", "sha256": "6bc03ec02825b57645cdf67fe04cd6c287bbd96d41d025a2c008d6bdd210d63f" }, "downloads": -1, "filename": "vispy-0.4.0.tar.gz", "has_sig": false, "md5_digest": "d50105c5ef37f43956f097bb2786d516", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 604215, "upload_time": "2015-05-22T18:46:46", "url": "https://files.pythonhosted.org/packages/80/79/18c7d4f0cab366269aa721fe7a0b24c00d4acd35610834dfd12f77cc2c89/vispy-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "58e1b9f9a6aec9600f9154877241ff26", "sha256": "fa24f925ec5998d3d68cc96bae0fe438082b78a4e198ba928dfa5b35b283c19e" }, "downloads": -1, "filename": "vispy-0.5.0.tar.gz", "has_sig": false, "md5_digest": "58e1b9f9a6aec9600f9154877241ff26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 872437, "upload_time": "2017-10-24T19:18:51", "url": "https://files.pythonhosted.org/packages/50/47/b1e9c456ebfaa9840b88e15d12d4a1a814fe79ebbe0ddba216f0659c870b/vispy-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "b3468184eea8863c47d48031108e2ea1", "sha256": "20b5bcb14e00cf7da2d175dd95d8d1033d32ce594a49f1930e04455323537f24" }, "downloads": -1, "filename": "vispy-0.5.1.tar.gz", "has_sig": false, "md5_digest": "b3468184eea8863c47d48031108e2ea1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12240229, "upload_time": "2017-11-04T16:33:44", "url": "https://files.pythonhosted.org/packages/f9/48/7e4325dc99ca6204d4ae75af270b898e16faa092b2f6c15b18e1bf83655b/vispy-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "f1585871f0f3da68d171731e9f7b4a0a", "sha256": "297b71eff249fd3550ce56512a6c8d10ed21ea42b50591cae0b49348eafb6e85" }, "downloads": -1, "filename": "vispy-0.5.2.tar.gz", "has_sig": false, "md5_digest": "f1585871f0f3da68d171731e9f7b4a0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12254959, "upload_time": "2017-12-12T22:03:12", "url": "https://files.pythonhosted.org/packages/30/17/c568ba02846067b66f14bc4ce5202a40f5888939196cb22f143885de14ae/vispy-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "fe24dbeebe0fdc2ab567732e5f3cfdac", "sha256": "f6c36408df851b91322c928aadb2c8aaf3b31150e11f723784cc81b6280fdcc0" }, "downloads": -1, "filename": "vispy-0.5.3.tar.gz", "has_sig": false, "md5_digest": "fe24dbeebe0fdc2ab567732e5f3cfdac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12306216, "upload_time": "2018-03-28T12:16:38", "url": "https://files.pythonhosted.org/packages/5f/e2/1c9f4534a335f922bddf5fbd7ed1b105b91660b9ac32e21c39fa62544386/vispy-0.5.3.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "ae17df2b9062d92b25304f6506649b38", "sha256": "cdc471905562f5ef75470ecc94eee4f0308db082ef1c598d815316130070cde5" }, "downloads": -1, "filename": "vispy-0.6.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ae17df2b9062d92b25304f6506649b38", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1423582, "upload_time": "2019-07-11T22:23:53", "url": "https://files.pythonhosted.org/packages/56/c1/1d621d69d6830d87d68d3f099c1a3556929792a38d68e8ac3cdd20ac5cc8/vispy-0.6.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "41549b52e7542181a4119688b1411ff7", "sha256": "1b7c6106a5540f3f9c192cae645084f8f489452ed7c963d31816f77a8e099d3f" }, "downloads": -1, "filename": "vispy-0.6.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "41549b52e7542181a4119688b1411ff7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1449182, "upload_time": "2019-07-11T22:23:55", "url": "https://files.pythonhosted.org/packages/d7/3e/db90a2a5c27cf732baf9c38645413004761af24c1d9e022f5f98ab8540cb/vispy-0.6.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8db25b2cc54d4a56224202d24ff71262", "sha256": "7c88604398e965a83491b9197d10059e7d8a289851690298f98787fd3d21c287" }, "downloads": -1, "filename": "vispy-0.6.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8db25b2cc54d4a56224202d24ff71262", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1454615, "upload_time": "2019-07-11T22:23:58", "url": "https://files.pythonhosted.org/packages/e9/26/a3490a55dfefe856765029625ed069ce2b0cde841561e9e1ff57392d9f67/vispy-0.6.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e1ff4b61a3e775edb1effcd81694fe94", "sha256": "7b2222a3b6c7fc10b556cf8ca1016df594ed54973e4a5dd8e706ded9986dbccd" }, "downloads": -1, "filename": "vispy-0.6.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e1ff4b61a3e775edb1effcd81694fe94", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1408504, "upload_time": "2019-07-11T22:24:00", "url": "https://files.pythonhosted.org/packages/33/4a/d921a771a7b37e33a681699a0c60017cbf51cca4b6e6c648b970d30e6543/vispy-0.6.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "5e8c61d8ce7d235c0d22f826b758363d", "sha256": "865f8789896da4528fd6dfb7c6466c0e75326d208965e89e4b558ffdd2c5b11c" }, "downloads": -1, "filename": "vispy-0.6.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5e8c61d8ce7d235c0d22f826b758363d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1412165, "upload_time": "2019-07-11T22:24:02", "url": "https://files.pythonhosted.org/packages/2c/6c/1bb2a5f0d1d52b6437052b477ee18b3f270b55193cf948f6d691ab68bd7a/vispy-0.6.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e827cc546963eecb335e3f333a466cd3", "sha256": "252d231d3fab15a6118c4c3d068a905ce2612cea0aa5479e45b424a8ee0051ac" }, "downloads": -1, "filename": "vispy-0.6.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e827cc546963eecb335e3f333a466cd3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1425532, "upload_time": "2019-07-11T22:24:04", "url": "https://files.pythonhosted.org/packages/db/f3/6e5dfbbeecb2c3e2df068c03fc7fa961267cb21e7603a92163780ce2bc46/vispy-0.6.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "712b4c553cf73b554702276c00aa38f3", "sha256": "ca2d6b3021877a34603c4b14c592348f5f86facb4ce979f2140173e0572d15e9" }, "downloads": -1, "filename": "vispy-0.6.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "712b4c553cf73b554702276c00aa38f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1451170, "upload_time": "2019-07-11T22:24:06", "url": "https://files.pythonhosted.org/packages/f3/fc/16554d457c82c6d67b97e7a17b1404076f35c4700ab7bebcbab6675f01d3/vispy-0.6.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "d3666c11ffabe045793a9d88412564bb", "sha256": "7963b1e778f0471986aa99c01611db90a2cb7340bd37d9bdf12407e1aff62f8e" }, "downloads": -1, "filename": "vispy-0.6.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d3666c11ffabe045793a9d88412564bb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1456378, "upload_time": "2019-07-11T22:24:09", "url": "https://files.pythonhosted.org/packages/77/c1/2d9719effdd24b3740acf11b615624bf1554033b5b19a2dd5196af5a0957/vispy-0.6.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "14014c4365fcd3d5171a3974c55b8d0e", "sha256": "cd0c00e525a39c9e94ffee07576c8ad3a031147341cb1365d0ed88fed0e71432" }, "downloads": -1, "filename": "vispy-0.6.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "14014c4365fcd3d5171a3974c55b8d0e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1409212, "upload_time": "2019-07-11T22:24:11", "url": "https://files.pythonhosted.org/packages/4d/71/6e47f3162165b579d4547bffdd34ed544181ee5d9abc4ec4000b8a8ceb45/vispy-0.6.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "08ac737c911b9b23becfd866c14b75fb", "sha256": "3f3f755808fc8201c71218ea5036cc62b035d0a9cb5d06a56cbb8aaca3dd058e" }, "downloads": -1, "filename": "vispy-0.6.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "08ac737c911b9b23becfd866c14b75fb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1413392, "upload_time": "2019-07-11T22:24:13", "url": "https://files.pythonhosted.org/packages/04/70/59b4dd0fe7c307a8d0b05209f3ea8e18ad51fd2bf87078db13780434800a/vispy-0.6.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6963337fd82f26b8efa888abf281a62e", "sha256": "ce94cbe179449b27712b4d8f6eed77ca5a920cc1899f9a27ac5f800b019a137f" }, "downloads": -1, "filename": "vispy-0.6.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6963337fd82f26b8efa888abf281a62e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1425911, "upload_time": "2019-07-11T22:24:15", "url": "https://files.pythonhosted.org/packages/e7/44/7811a4102389ca612ac16a82c0d06881803255d70745cb4d49438f13dcc2/vispy-0.6.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "3739f21b4ff8d41415d160df5d58481a", "sha256": "bd988a5d8439e5bad9801b1633d5ec9628cfd7c143e71156a263896625c79e8d" }, "downloads": -1, "filename": "vispy-0.6.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3739f21b4ff8d41415d160df5d58481a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1452214, "upload_time": "2019-07-11T22:24:17", "url": "https://files.pythonhosted.org/packages/d0/79/3f4a51571d8af67d96bacfc8bcd5ffab45f3ef186c621e2d205712b0622c/vispy-0.6.0-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4251f47ea6ae05a26c38f466656dde81", "sha256": "53fa292692b6aaea268889642e63676f375f3c49a472e5c4589a45b5c0d77c49" }, "downloads": -1, "filename": "vispy-0.6.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4251f47ea6ae05a26c38f466656dde81", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1457410, "upload_time": "2019-07-11T22:24:20", "url": "https://files.pythonhosted.org/packages/a4/ce/471795a6fa79ad524a83839b3ebbfdd0193f6b97fd5e615f5c4ebaf7816c/vispy-0.6.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a6339f13b4834d113368b072a655c4d8", "sha256": "d38cec99088a763efbf6c2ba4ce4471f9353f4d7c84ba7d1304788ba4effdc38" }, "downloads": -1, "filename": "vispy-0.6.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "a6339f13b4834d113368b072a655c4d8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1409313, "upload_time": "2019-07-11T22:24:22", "url": "https://files.pythonhosted.org/packages/fb/59/3dd6e66320d2892c6142782c5816840404d44ca169a70f7b5c4cf10979b3/vispy-0.6.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "383e4bba4bd10fd10d7674ed6177f53c", "sha256": "136191e7388f83168c19b0be268a5ad3f93a1d121482f5f2b0a252521c32db72" }, "downloads": -1, "filename": "vispy-0.6.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "383e4bba4bd10fd10d7674ed6177f53c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 1413501, "upload_time": "2019-07-11T22:24:25", "url": "https://files.pythonhosted.org/packages/5c/ec/ff3ba199a463df344fc9e19f0299dff7346f196fba5bf7c6b607420221a2/vispy-0.6.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5053d78840263952de0f203f3c5fa6ee", "sha256": "e5a1199a84060b6c4b15d46cdf97dc679fe337a61ccc7db35e0644cc11ee753d" }, "downloads": -1, "filename": "vispy-0.6.0.tar.gz", "has_sig": false, "md5_digest": "5053d78840263952de0f203f3c5fa6ee", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 13289220, "upload_time": "2019-07-11T22:24:29", "url": "https://files.pythonhosted.org/packages/7b/c8/53c4375998fc4c9ae27384700dd9c82868a195b7d352b658acec98790b08/vispy-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "a2c556a432c306db67d9c8aed0c1fc17", "sha256": "d5eca3764455d2a8ca8bca2e3712fef66e462702270ecfaa4139a9ed1a51d647" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a2c556a432c306db67d9c8aed0c1fc17", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2219487, "upload_time": "2019-07-28T12:37:33", "url": "https://files.pythonhosted.org/packages/09/19/e56afb1abc0ccf2d8b79a339b073eb4b71b9bc21f804e4f6267172dd857f/vispy-0.6.1-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "049f64ec081b851f404a0cc683cef27e", "sha256": "6079a1d4757d22b0ee8c4d5d2422a4c2534e64fe826982c4535f6142949d2f29" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "049f64ec081b851f404a0cc683cef27e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2245151, "upload_time": "2019-07-28T12:37:20", "url": "https://files.pythonhosted.org/packages/50/f1/b65dc913fb4eb3e0dabf7ad00acdd4e9470a18836bbf61916e44aa28ca93/vispy-0.6.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f44fc732457c7619eeea78a2e7888bfb", "sha256": "c231117dbef22007c5ef5ef4f98904ffd4f6e60d83b62e9ba4965a9ae38b0bde" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f44fc732457c7619eeea78a2e7888bfb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2250598, "upload_time": "2019-07-28T12:37:22", "url": "https://files.pythonhosted.org/packages/08/c7/facb0ad7c352528533d0e9aafefd584bed66c168c9140d2a904650fbad02/vispy-0.6.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b2ea993da3f3c998b5bc6ac6aadaa98a", "sha256": "bf8064159b11e10f5d9710d84388e636843b068f72dcbde8a3eac49c1a6fc7e6" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b2ea993da3f3c998b5bc6ac6aadaa98a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2204899, "upload_time": "2019-07-28T12:37:40", "url": "https://files.pythonhosted.org/packages/73/5a/3b21f45d473d76f12b588786af6371db4de1637555e765d28998386711d5/vispy-0.6.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "85fe8cf45ea14d69fd476388f279cf98", "sha256": "9ccecc529492a660cc9c879f3debf04b8ef3c7ecb43c2b3d62586204f67a7fcd" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "85fe8cf45ea14d69fd476388f279cf98", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2208561, "upload_time": "2019-07-28T12:37:42", "url": "https://files.pythonhosted.org/packages/c4/45/a698d3dee7fe471145833129194f1bd168240f547daffb77131758f90159/vispy-0.6.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "790e5817351b67aa5f831e6e9fb06e7e", "sha256": "a17653483cc4c197621492ab416f9256d34d1fe940a4dc59f41be49360a91056" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "790e5817351b67aa5f831e6e9fb06e7e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2221433, "upload_time": "2019-07-28T12:37:35", "url": "https://files.pythonhosted.org/packages/3f/ce/813d4ff1d7e2c71d5d43f9c554cac6c9b45110aac8000f057b3e9788cf3f/vispy-0.6.1-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "50337cae21f2d8d733c6bfabd6817931", "sha256": "ee5d2570a4278bdf988d185c35f65ff4da80db0984300ffdf0c34c035a1c4561" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "50337cae21f2d8d733c6bfabd6817931", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2247194, "upload_time": "2019-07-28T12:37:24", "url": "https://files.pythonhosted.org/packages/03/b1/839e5ce90a59572876719340d51e31f63516bfdfb44cb3400010aaf4ec9c/vispy-0.6.1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "eebaa56b35fda9a1d5ab5e7b17555c50", "sha256": "364a7f91d67a8cc000e56a91a4c2947e21c968d67e741930cf1b6e8a47afaeab" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eebaa56b35fda9a1d5ab5e7b17555c50", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2252366, "upload_time": "2019-07-28T12:37:27", "url": "https://files.pythonhosted.org/packages/1d/56/0d8e0d6a8edcd8a4eb938ec56027b7c20fd9c51f72438718b401a37513ed/vispy-0.6.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f7686b1084d51b25cbb5d7f93ef81faa", "sha256": "473cc3116aafd9bf32ed5b8b5aea1446f6450ef799cf2ace9c118ad14e051f47" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f7686b1084d51b25cbb5d7f93ef81faa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2205610, "upload_time": "2019-07-28T12:37:44", "url": "https://files.pythonhosted.org/packages/74/70/d4e51eff423b3a103dd2ad644dbb3d89430040e236731a6433625d7e53c8/vispy-0.6.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b8bdee23c6ab4a68645b76ed9cf5d745", "sha256": "fffa505943e903f2a925669130662d4b8bc72fb380a61ed10dd9cf7906eb959b" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b8bdee23c6ab4a68645b76ed9cf5d745", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2209724, "upload_time": "2019-07-28T12:37:46", "url": "https://files.pythonhosted.org/packages/2e/c9/ab3596782c5920b839ec69d69b3671385bc07ff580a7e8e5f6ba92ccd9fb/vispy-0.6.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "de46cc72e000a2e713bd18b0840aa060", "sha256": "c1e532fe2f3ea598c642ac2e2575c7a0dc2ffae20cce7751bb10e3086b4daa9a" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "de46cc72e000a2e713bd18b0840aa060", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2221811, "upload_time": "2019-07-28T12:37:37", "url": "https://files.pythonhosted.org/packages/4d/26/8fc28af8f352ab1a676b1a3619a4111bbe3e7b071ebec63dc3105cb532fa/vispy-0.6.1-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "bb7cb9c7739ed5a6d9f804e736699d4c", "sha256": "3417c1582625455a1e5598970cbbd9bd7ba19fb6d03502ca2674a8db19f7433e" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bb7cb9c7739ed5a6d9f804e736699d4c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2248210, "upload_time": "2019-07-28T12:37:29", "url": "https://files.pythonhosted.org/packages/26/39/157eed5716d622adae29ac652f4b2243e9b0a8b83447c2bce57a905b30dc/vispy-0.6.1-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "327b07cf6ba2102a8005f3e4d140329a", "sha256": "381fba62ac125523b499490398afead9e9f496728a4a0a990ad51c152380c287" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "327b07cf6ba2102a8005f3e4d140329a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2253389, "upload_time": "2019-07-28T12:37:31", "url": "https://files.pythonhosted.org/packages/6c/3a/384c578b08131d79d6d506f57a88f4c3e86bfb8f9ea53ae3332439ef1bb4/vispy-0.6.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "62e10f862177ecebfe739e04c8771630", "sha256": "63bf69ad1346775029d309e9b067e271f34985b2cf225a4a49c1ca9cdc1dbdbc" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "62e10f862177ecebfe739e04c8771630", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2205710, "upload_time": "2019-07-28T12:37:48", "url": "https://files.pythonhosted.org/packages/05/cd/633d3b348275888d39318e520cfe207d40cff3a59c9c6cde2d4571180b27/vispy-0.6.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7ea3f119b1e32242d909901e2d318a7e", "sha256": "a9f898c39ab7d663c90c4a17ae58c0bb10a62a9d7c4582682a88afd57290dcb0" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7ea3f119b1e32242d909901e2d318a7e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2209825, "upload_time": "2019-07-28T12:37:50", "url": "https://files.pythonhosted.org/packages/ca/3b/8bbdac123b719bed87d1af8c478b82aaaafc3dcfc8917f8b13f66441cffe/vispy-0.6.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1b8172fb3b5fc5d2a0fcc3102e184f53", "sha256": "8f4cf863a1c6142338d06cf3f824e75373dd45a4ce9a9a133e1c36b662f49aa1" }, "downloads": -1, "filename": "vispy-0.6.1.tar.gz", "has_sig": false, "md5_digest": "1b8172fb3b5fc5d2a0fcc3102e184f53", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 13254016, "upload_time": "2019-07-28T12:37:53", "url": "https://files.pythonhosted.org/packages/fe/dd/790121fd4331105e9227753bb3dcca29463c4f63f99860402c3efa00ffb7/vispy-0.6.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a2c556a432c306db67d9c8aed0c1fc17", "sha256": "d5eca3764455d2a8ca8bca2e3712fef66e462702270ecfaa4139a9ed1a51d647" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a2c556a432c306db67d9c8aed0c1fc17", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2219487, "upload_time": "2019-07-28T12:37:33", "url": "https://files.pythonhosted.org/packages/09/19/e56afb1abc0ccf2d8b79a339b073eb4b71b9bc21f804e4f6267172dd857f/vispy-0.6.1-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "049f64ec081b851f404a0cc683cef27e", "sha256": "6079a1d4757d22b0ee8c4d5d2422a4c2534e64fe826982c4535f6142949d2f29" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "049f64ec081b851f404a0cc683cef27e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2245151, "upload_time": "2019-07-28T12:37:20", "url": "https://files.pythonhosted.org/packages/50/f1/b65dc913fb4eb3e0dabf7ad00acdd4e9470a18836bbf61916e44aa28ca93/vispy-0.6.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f44fc732457c7619eeea78a2e7888bfb", "sha256": "c231117dbef22007c5ef5ef4f98904ffd4f6e60d83b62e9ba4965a9ae38b0bde" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f44fc732457c7619eeea78a2e7888bfb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2250598, "upload_time": "2019-07-28T12:37:22", "url": "https://files.pythonhosted.org/packages/08/c7/facb0ad7c352528533d0e9aafefd584bed66c168c9140d2a904650fbad02/vispy-0.6.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b2ea993da3f3c998b5bc6ac6aadaa98a", "sha256": "bf8064159b11e10f5d9710d84388e636843b068f72dcbde8a3eac49c1a6fc7e6" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b2ea993da3f3c998b5bc6ac6aadaa98a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2204899, "upload_time": "2019-07-28T12:37:40", "url": "https://files.pythonhosted.org/packages/73/5a/3b21f45d473d76f12b588786af6371db4de1637555e765d28998386711d5/vispy-0.6.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "85fe8cf45ea14d69fd476388f279cf98", "sha256": "9ccecc529492a660cc9c879f3debf04b8ef3c7ecb43c2b3d62586204f67a7fcd" }, "downloads": -1, "filename": "vispy-0.6.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "85fe8cf45ea14d69fd476388f279cf98", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2208561, "upload_time": "2019-07-28T12:37:42", "url": "https://files.pythonhosted.org/packages/c4/45/a698d3dee7fe471145833129194f1bd168240f547daffb77131758f90159/vispy-0.6.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "790e5817351b67aa5f831e6e9fb06e7e", "sha256": "a17653483cc4c197621492ab416f9256d34d1fe940a4dc59f41be49360a91056" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "790e5817351b67aa5f831e6e9fb06e7e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2221433, "upload_time": "2019-07-28T12:37:35", "url": "https://files.pythonhosted.org/packages/3f/ce/813d4ff1d7e2c71d5d43f9c554cac6c9b45110aac8000f057b3e9788cf3f/vispy-0.6.1-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "50337cae21f2d8d733c6bfabd6817931", "sha256": "ee5d2570a4278bdf988d185c35f65ff4da80db0984300ffdf0c34c035a1c4561" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "50337cae21f2d8d733c6bfabd6817931", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2247194, "upload_time": "2019-07-28T12:37:24", "url": "https://files.pythonhosted.org/packages/03/b1/839e5ce90a59572876719340d51e31f63516bfdfb44cb3400010aaf4ec9c/vispy-0.6.1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "eebaa56b35fda9a1d5ab5e7b17555c50", "sha256": "364a7f91d67a8cc000e56a91a4c2947e21c968d67e741930cf1b6e8a47afaeab" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eebaa56b35fda9a1d5ab5e7b17555c50", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2252366, "upload_time": "2019-07-28T12:37:27", "url": "https://files.pythonhosted.org/packages/1d/56/0d8e0d6a8edcd8a4eb938ec56027b7c20fd9c51f72438718b401a37513ed/vispy-0.6.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f7686b1084d51b25cbb5d7f93ef81faa", "sha256": "473cc3116aafd9bf32ed5b8b5aea1446f6450ef799cf2ace9c118ad14e051f47" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f7686b1084d51b25cbb5d7f93ef81faa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2205610, "upload_time": "2019-07-28T12:37:44", "url": "https://files.pythonhosted.org/packages/74/70/d4e51eff423b3a103dd2ad644dbb3d89430040e236731a6433625d7e53c8/vispy-0.6.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b8bdee23c6ab4a68645b76ed9cf5d745", "sha256": "fffa505943e903f2a925669130662d4b8bc72fb380a61ed10dd9cf7906eb959b" }, "downloads": -1, "filename": "vispy-0.6.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b8bdee23c6ab4a68645b76ed9cf5d745", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2209724, "upload_time": "2019-07-28T12:37:46", "url": "https://files.pythonhosted.org/packages/2e/c9/ab3596782c5920b839ec69d69b3671385bc07ff580a7e8e5f6ba92ccd9fb/vispy-0.6.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "de46cc72e000a2e713bd18b0840aa060", "sha256": "c1e532fe2f3ea598c642ac2e2575c7a0dc2ffae20cce7751bb10e3086b4daa9a" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "de46cc72e000a2e713bd18b0840aa060", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2221811, "upload_time": "2019-07-28T12:37:37", "url": "https://files.pythonhosted.org/packages/4d/26/8fc28af8f352ab1a676b1a3619a4111bbe3e7b071ebec63dc3105cb532fa/vispy-0.6.1-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "bb7cb9c7739ed5a6d9f804e736699d4c", "sha256": "3417c1582625455a1e5598970cbbd9bd7ba19fb6d03502ca2674a8db19f7433e" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bb7cb9c7739ed5a6d9f804e736699d4c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2248210, "upload_time": "2019-07-28T12:37:29", "url": "https://files.pythonhosted.org/packages/26/39/157eed5716d622adae29ac652f4b2243e9b0a8b83447c2bce57a905b30dc/vispy-0.6.1-cp37-cp37m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "327b07cf6ba2102a8005f3e4d140329a", "sha256": "381fba62ac125523b499490398afead9e9f496728a4a0a990ad51c152380c287" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "327b07cf6ba2102a8005f3e4d140329a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2253389, "upload_time": "2019-07-28T12:37:31", "url": "https://files.pythonhosted.org/packages/6c/3a/384c578b08131d79d6d506f57a88f4c3e86bfb8f9ea53ae3332439ef1bb4/vispy-0.6.1-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "62e10f862177ecebfe739e04c8771630", "sha256": "63bf69ad1346775029d309e9b067e271f34985b2cf225a4a49c1ca9cdc1dbdbc" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "62e10f862177ecebfe739e04c8771630", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2205710, "upload_time": "2019-07-28T12:37:48", "url": "https://files.pythonhosted.org/packages/05/cd/633d3b348275888d39318e520cfe207d40cff3a59c9c6cde2d4571180b27/vispy-0.6.1-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7ea3f119b1e32242d909901e2d318a7e", "sha256": "a9f898c39ab7d663c90c4a17ae58c0bb10a62a9d7c4582682a88afd57290dcb0" }, "downloads": -1, "filename": "vispy-0.6.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7ea3f119b1e32242d909901e2d318a7e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 2209825, "upload_time": "2019-07-28T12:37:50", "url": "https://files.pythonhosted.org/packages/ca/3b/8bbdac123b719bed87d1af8c478b82aaaafc3dcfc8917f8b13f66441cffe/vispy-0.6.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1b8172fb3b5fc5d2a0fcc3102e184f53", "sha256": "8f4cf863a1c6142338d06cf3f824e75373dd45a4ce9a9a133e1c36b662f49aa1" }, "downloads": -1, "filename": "vispy-0.6.1.tar.gz", "has_sig": false, "md5_digest": "1b8172fb3b5fc5d2a0fcc3102e184f53", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 13254016, "upload_time": "2019-07-28T12:37:53", "url": "https://files.pythonhosted.org/packages/fe/dd/790121fd4331105e9227753bb3dcca29463c4f63f99860402c3efa00ffb7/vispy-0.6.1.tar.gz" } ] }