{ "info": { "author": "Carlos Alberto Gomez Gonzalez", "author_email": "carlosgg33@gmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering :: Astronomy" ], "description": "VIP - Vortex Image Processing package\n=====================================\n\n\n.. image:: https://badge.fury.io/py/vip-hci.svg\n :target: https://pypi.python.org/pypi/vip-hci\n\n.. image:: https://img.shields.io/badge/Python-3.6%2C%203.7-brightgreen.svg\n :target: https://pypi.python.org/pypi/vip-hci\n\n.. image:: https://travis-ci.org/vortex-exoplanet/VIP.svg?branch=master\n :target: https://travis-ci.org/vortex-exoplanet/VIP\n\n.. image:: https://img.shields.io/badge/license-MIT-blue.svg?style=flat\n :target: https://github.com/vortex-exoplanet/VIP/blob/master/LICENSE\n\n.. image:: https://img.shields.io/badge/arXiv-1705.06184%20-yellowgreen.svg\n :target: https://arxiv.org/abs/1705.06184\n\n.. image:: https://readthedocs.org/projects/vip/badge/?version=latest\n :target: http://vip.readthedocs.io/en/latest/?badge=latest\n\n.. image:: https://codecov.io/gh/vortex-exoplanet/VIP/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/vortex-exoplanet/VIP\n\n::\n\n ---------------------------------------------------\n oooooo oooo ooooo ooooooooo.\n `888. .8' `888' `888 `Y88.\n `888. .8' 888 888 .d88'\n `888. .8' 888 888ooo88P'\n `888.8' 888 888\n `888' 888 888\n `8' o888o o888o\n ---------------------------------------------------\n Vortex Image Processing package\n ---------------------------------------------------\n\n\nIntroduction\n------------\n\n``VIP`` is a python package for angular, reference star and spectral\ndifferential imaging for exoplanet and disk high-contrast imaging. ``VIP`` is\ncompatible with Python 3 (Python 2 compatibility dropped with ``VIP`` 0.9.9).\n\n.. image:: https://github.com/carlgogo/carlgogo.github.io/blob/master/assets/images/vip.png?raw=true\n :alt: Mosaic of S/N maps\n\nThe goal of ``VIP`` is to integrate open-source, efficient, easy-to-use and\nwell-documented implementations of high-contrast image processing algorithms to\nthe interested scientific community. The main repository of ``VIP`` resides on\n`GitHub `_, the standard for scientific\nopen source code distribution, using Git as a version control system.\n\n``VIP`` started as the effort of `Carlos Alberto Gomez Gonzalez `_,\na former PhD student of the `VORTEX team `_\n(ULiege, Belgium). ``VIP``'s development is led by Dr. Gomez with contributions\nmade by collaborators from several teams (take a look at the `contributors tab `_ on\n``VIP``'s GitHub repository). Most of ``VIP``'s functionalities are mature but\nit doesn't mean it's free from bugs. The code is continuously evolving and\ntherefore feedback/contributions are greatly appreciated. If you want to report\na bug or suggest a functionality please create an issue on GitHub. Pull\nrequests are very welcomed!\n\n\nDocumentation\n-------------\nThe documentation for ``VIP`` can be found here: http://vip.readthedocs.io.\n\n\nJupyter notebook tutorial\n-------------------------\nTutorials, in the form of Jupyter notebooks, showcasing ``VIP``'s usage and other resources such as test/dummy datasets are available on the ``VIP-extras`` `repository `_. Alternatively, you can execute this repository on `Binder `_. The notebook for ADI processing can be visualized online with\n`nbviewer `_. If you are new to the Jupyter notebook application check out the `beginner's guide\n`_.\n\n\nTL;DR setup guide\n-----------------\n.. code-block:: bash\n\n $ pip install vip_hci\n\n\nInstallation and dependencies\n-----------------------------\nThe benefits of using a Python package manager (distribution), such as\n(ana)conda or Canopy, are many. Mainly, it brings easy and robust package\nmanagement and avoids messing up with your system's default python. An\nalternative is to use package managers like apt-get for Ubuntu or\nHomebrew/MacPorts/Fink for macOS. I personally recommend using `Miniconda `_.\n\n``VIP`` depends on existing packages from the Python ecosystem, such as\n``numpy``, ``scipy``, ``matplotlib``, ``pandas``, ``astropy``, ``scikit-learn``,\n``scikit-image``, ``photutils`` and others. There are different ways of\ninstalling ``VIP`` suitable for different scenarios.\n\n\nUsing pip\n^^^^^^^^^\nThe easiest way to install ``VIP`` is through the Python Package Index, aka\n`PyPI `_, with the ``pip`` package manager. Simply run:\n\n.. code-block:: bash\n\n $ pip install vip_hci\n\nWith ``pip`` you can easily uninstall, upgrade or install a specific version of\n``VIP``. For upgrading the package run:\n\n.. code-block:: bash\n\n $ pip install --upgrade vip_hci\n\nAlternatively, you can use ``pip install`` and point to the GitHub repo:\n\n.. code-block:: bash\n\n $ pip install git+https://github.com/vortex-exoplanet/VIP.git\n\nUsing the setup.py file\n^^^^^^^^^^^^^^^^^^^^^^^\nYou can download ``VIP`` from its GitHub repository as a zip file. A ``setup.py``\nfile (setuptools) is included in the root folder of ``VIP``. Enter the package's\nroot folder and run:\n\n.. code-block:: bash\n\n $ python setup.py install\n\nUsing Git\n^^^^^^^^^\nIf you want to benefit from the ``git`` functionalities, you need to clone the\nrepository (make sure your system has ``git`` installed):\n\n.. code-block:: bash\n\n $ git clone https://github.com/vortex-exoplanet/VIP.git\n\nThen you can install the package by following the previous steps, using the\nsetup.py file. Creating a fork with GitHub is recommended to developers or to\nusers who want to experiment with the code.\n\nOther dependencies\n^^^^^^^^^^^^^^^^^^\n``OpenCV`` (Open source Computer Vision) provides fast C++ image processing\noperations and is used by ``VIP`` for basic image transformations. If you don't\nhave/want the ``OpenCV`` python bindings (``OpenCV`` is optional since ``VIP``\nv0.5.2), ``VIP`` will use the much slower ``ndimage``/``scikit-image`` libraries\ntransparently. Fortunately, installing ``OpenCV`` library is nowadays and easy\nprocess that is done automatically with the ``VIP`` installation. Alternatively,\nyou could use ``conda``:\n\n.. code-block:: bash\n\n $ conda install opencv\n\n``VIP`` contains a class ``vip_hci.fits.ds9`` that enables, through ``pyds9``,\nthe interaction with a DS9 window (displaying numpy arrays, controlling the\ndisplay options, etc). ``pyds9`` is an optional requirement and must be\ninstalled from the latest development version:\n\n.. code-block:: bash\n\n $ pip install git+git://github.com/ericmandel/pyds9.git#egg=pyds9\n\nAlso, you can install the Intel Math Kernel Library (MKL) optimizations\n(provided that you have a recent version of ``conda``) or ``openblas``\nlibraries. Either of them can be installed with ``conda install``. This is\nrecommended along with ``OpenCV`` for maximum speed on ``VIP`` computations.\n\n``VIP`` offers the possibility of computing SVDs on GPU by using ``CuPy``\n(starting from version 0.8.0) or ``PyTorch`` (from version 0.9.2). These remain\nas optional requirements, to be installed by the user, as well as a proper CUDA\nenvironment (and a decent GPU card).\n\nLoading VIP\n^^^^^^^^^^^\nFinally, start Python (or IPython or a Jupyter notebook if you prefer) and check\nthat you are able to import ``VIP``:\n\n.. code-block:: python\n\n import vip_hci as vip\n\nIf everything went fine with the installation, you will see a welcome message.\nNow you can start finding exoplanets!\n\n\nMailing list\n------------\nPlease subscribe to our `mailing list `_\nif you want to be informed of ``VIP``'s latest developments (new versions\nand/or updates).\n\n\nAttribution\n-----------\nPlease cite Gomez Gonzalez et al. 2017 (http://iopscience.iop.org/article/10.3847/1538-3881/aa73d7/)\nwhenever you publish data reduced with ``VIP``. Astrophysics Source Code Library\nreference [ascl:1603.003].\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/vortex-exoplanet/VIP", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "vip-hci", "package_url": "https://pypi.org/project/vip-hci/", "platform": "", "project_url": "https://pypi.org/project/vip-hci/", "project_urls": { "Homepage": "https://github.com/vortex-exoplanet/VIP" }, "release_url": "https://pypi.org/project/vip-hci/0.9.11/", "requires_dist": [ "numpy (~=1.8)", "scipy (~=1.1.0)", "astropy (~=3.0)", "photutils (~=0.6)", "scikit-learn (~=0.17)", "scikit-image (~=0.11)", "emcee (~=2.1)", "nestle (==0.2.0)", "corner (~=1.0.2)", "pandas (~=0.18)", "matplotlib (>=2.2)", "psutil", "pyprind (~=2.11)", "munch", "opencv-python (>=3.4)", "pytest", "hciplot (~=0.1.3)", "numpy (~=1.8) ; extra == 'dev'", "scipy (~=1.1.0) ; extra == 'dev'", "astropy (~=3.0) ; extra == 'dev'", "photutils (~=0.6) ; extra == 'dev'", "scikit-learn (~=0.17) ; extra == 'dev'", "scikit-image (~=0.11) ; extra == 'dev'", "emcee (~=2.1) ; extra == 'dev'", "nestle (==0.2.0) ; extra == 'dev'", "corner (~=1.0.2) ; extra == 'dev'", "pandas (~=0.18) ; extra == 'dev'", "matplotlib (>=2.2) ; extra == 'dev'", "psutil ; extra == 'dev'", "pyprind (~=2.11) ; extra == 'dev'", "munch ; extra == 'dev'", "opencv-python (>=3.4) ; extra == 'dev'", "pytest ; extra == 'dev'", "hciplot (~=0.1.3) ; extra == 'dev'", "sphinx (<=1.5.6) ; extra == 'dev'", "pytest-cov (~=2.6.0) ; extra == 'dev'", "codecov (~=2.0.15) ; extra == 'dev'" ], "requires_python": "", "summary": "Package for astronomical high-contrast image processing.", "version": "0.9.11" }, "last_serial": 5601854, "releases": { "0.8.0": [ { "comment_text": "", "digests": { "md5": "a8b991adacf863872976bca733131270", "sha256": "b40e53a5cb5ff10b09e0b2666786c8673a013566806e8dc9aabf7f3d398a77e3" }, "downloads": -1, "filename": "vip_hci-0.8.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a8b991adacf863872976bca733131270", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 185231, "upload_time": "2017-11-17T12:21:35", "url": "https://files.pythonhosted.org/packages/46/6a/fab1cd83bff46cbf93d53749ffbb817641ae05337d550b99841029417334/vip_hci-0.8.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c46297b0bc3bbeca4c8d8a76ab0ca8c", "sha256": "0b7143d2fab2a266a1f167f1e4f44579c045faf9676e89e4c54bf08e125f28de" }, "downloads": -1, "filename": "vip_hci-0.8.0.tar.gz", "has_sig": false, "md5_digest": "6c46297b0bc3bbeca4c8d8a76ab0ca8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150634, "upload_time": "2017-11-17T12:21:38", "url": "https://files.pythonhosted.org/packages/4c/77/66a80e5200edb38fb532baa8862bb06d5d1a43557208ec99a2b8a4e32a58/vip_hci-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "55898c6ed5fbdd1d355fd56cdc079468", "sha256": "27d7debcae5b43543fe9f7dc3ecc812cb248a5181ac233a980a7812e35e55aaf" }, "downloads": -1, "filename": "vip_hci-0.8.1-py2-none-any.whl", "has_sig": false, "md5_digest": "55898c6ed5fbdd1d355fd56cdc079468", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 185556, "upload_time": "2017-11-17T14:55:08", "url": "https://files.pythonhosted.org/packages/29/34/5cecb3501149d20cba91bbaa2b15ece4447361b2d3fce3a070ae52ca73f1/vip_hci-0.8.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df703fedd7988018fa21ba0af9e19dec", "sha256": "b37775aea3db7ed3d6b80cbc3d4a68b4382b4571eb848c104a026efb7ef28538" }, "downloads": -1, "filename": "vip_hci-0.8.1.tar.gz", "has_sig": false, "md5_digest": "df703fedd7988018fa21ba0af9e19dec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150937, "upload_time": "2017-11-17T14:55:10", "url": "https://files.pythonhosted.org/packages/02/0e/1267c6462ef6d3ef0b95dd38c80ebc37e915c4d5673d8cecd576c628d96c/vip_hci-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "f5224e9d7a03a3c8caa0b7c3a9c3cbe3", "sha256": "34fab7f93f06529d9bbc5353fff34a9b534f6d171a7fd8f4ca5f9b4e9f5fe5d6" }, "downloads": -1, "filename": "vip_hci-0.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f5224e9d7a03a3c8caa0b7c3a9c3cbe3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 189540, "upload_time": "2017-11-22T09:19:46", "url": "https://files.pythonhosted.org/packages/53/e6/e728bb2a455c0b6e996f9defe16ae151048c64848e9bdd8aa6e59d7b67e8/vip_hci-0.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61582e0436061db8efbbb692c18f751e", "sha256": "116365cded8da0762a7c9e0448f3351749aea9aae39d3d33cece3e8cbf5128ae" }, "downloads": -1, "filename": "vip_hci-0.8.2.tar.gz", "has_sig": false, "md5_digest": "61582e0436061db8efbbb692c18f751e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140774, "upload_time": "2017-11-22T09:19:48", "url": "https://files.pythonhosted.org/packages/44/b3/c6877379c14f1d643bb5d69c84c8cad772b4e693b05068fe38ab2989046e/vip_hci-0.8.2.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "a601659b4cfc5e63e09151ccccddc186", "sha256": "dffc6a5c749b418c684b3d43421929ab46e2e48710c9284a77e0892e1904c452" }, "downloads": -1, "filename": "vip_hci-0.8.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a601659b4cfc5e63e09151ccccddc186", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 194563, "upload_time": "2018-02-11T20:25:06", "url": "https://files.pythonhosted.org/packages/64/4f/e2e690d5c0bf0e11209a65950df33c4ef1f361ef92a5eb18d61e4c8ab708/vip_hci-0.8.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcf3fd9a559ad4f1e6d4ebc98503976a", "sha256": "1a75a98a7e85bec9fdbfa968d79222c96e8d680ea9660f2efcf7b53b0d0bef1d" }, "downloads": -1, "filename": "vip_hci-0.8.7.tar.gz", "has_sig": false, "md5_digest": "dcf3fd9a559ad4f1e6d4ebc98503976a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144657, "upload_time": "2018-02-11T20:25:08", "url": "https://files.pythonhosted.org/packages/d3/d4/85c2f6a7205b4b07f39b841459699cc9ef65ce7ee8a10e4a07b4978488b5/vip_hci-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "cd4b17e5264025bd71bd0e24800d2904", "sha256": "99a63bdf1cf121f00d891978f50361e2e94ae02b5f2cd4c5e719949b43656ba2" }, "downloads": -1, "filename": "vip_hci-0.8.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd4b17e5264025bd71bd0e24800d2904", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 198151, "upload_time": "2018-02-13T13:41:32", "url": "https://files.pythonhosted.org/packages/33/b5/e69030025506cd02c6c6ad0b00893943b872a1dd61a11a2de0437b5471de/vip_hci-0.8.8-py2.py3-none-any.whl" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "cc577b702fabca18ff5fd65cb28e3591", "sha256": "6aaeaddf0a46f20ab34a8d31e488a941d1b2c929ade3037aadd0bf8db92b5232" }, "downloads": -1, "filename": "vip_hci-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc577b702fabca18ff5fd65cb28e3591", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 204095, "upload_time": "2018-02-17T18:29:43", "url": "https://files.pythonhosted.org/packages/9f/29/354b4579547dee784bb9934eb8d99668aec2214d1a88cc955bb5510e8a35/vip_hci-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "391af094776274a0d1b3377cc4c2df6c", "sha256": "7bcfb6573f0360bd5101e850871fe8df1e6324294da87abf669251cc10db5413" }, "downloads": -1, "filename": "vip_hci-0.9.0.tar.gz", "has_sig": false, "md5_digest": "391af094776274a0d1b3377cc4c2df6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150355, "upload_time": "2018-02-17T18:29:47", "url": "https://files.pythonhosted.org/packages/0f/cb/64c8896b940a880e545f6c08acaa7cc4795c95c69f550b27219bf9059cee/vip_hci-0.9.0.tar.gz" } ], "0.9.10": [ { "comment_text": "", "digests": { "md5": "fdf123847c9d58361bf2ac1fe4971bc8", "sha256": "f0c0681ba6a4045652f541749660dc343076a929f979ed0c0db0ef0753aabf8b" }, "downloads": -1, "filename": "vip_hci-0.9.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fdf123847c9d58361bf2ac1fe4971bc8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 345296, "upload_time": "2019-05-04T11:05:31", "url": "https://files.pythonhosted.org/packages/35/4c/7bdd538295c3003e2aaf5405f9bbd320d399765bdef03f206286a9253960/vip_hci-0.9.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f845edf7b49b3c6a99c99d75e4c7f532", "sha256": "ee3114e54fefa2d84d1eb9171902dd86a0b23bb23623ffe32c2dedb92905f7ef" }, "downloads": -1, "filename": "vip_hci-0.9.10.tar.gz", "has_sig": false, "md5_digest": "f845edf7b49b3c6a99c99d75e4c7f532", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219524, "upload_time": "2019-05-04T11:05:33", "url": "https://files.pythonhosted.org/packages/7a/46/2488f7a59d70320a6c41b1bb68f2386b30d82ccda6ea4c8ccf38b43fa85f/vip_hci-0.9.10.tar.gz" } ], "0.9.11": [ { "comment_text": "", "digests": { "md5": "59297fc9e9deeddca8239ff0409ff239", "sha256": "7e88adfca54dbbae304bed9d4b8a69c81288f1941e86c1aa17b97ee69ad556f9" }, "downloads": -1, "filename": "vip_hci-0.9.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "59297fc9e9deeddca8239ff0409ff239", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 345211, "upload_time": "2019-07-29T20:57:08", "url": "https://files.pythonhosted.org/packages/31/2e/b42cd028fd3bf9b2fb3925bc0c9facc586b672d6a7c4e3e0afb311dab16c/vip_hci-0.9.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b498ef4d75156495e38863152020750", "sha256": "f97f49b664775dd2f231d6b0a81acab79eea4b9854bebba71222b95e7467bce5" }, "downloads": -1, "filename": "vip_hci-0.9.11.tar.gz", "has_sig": false, "md5_digest": "4b498ef4d75156495e38863152020750", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219495, "upload_time": "2019-07-29T20:57:11", "url": "https://files.pythonhosted.org/packages/ff/72/0cb32519e87d36e5326108a54607f0dd081b6322a2447391ca0db3544084/vip_hci-0.9.11.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "d6bcaa69f74111612aed3cc242e78e1b", "sha256": "319d8b8717611bcf75a010d6958917fdc5dc3d9e5223e036b63dae84e71dc3aa" }, "downloads": -1, "filename": "vip_hci-0.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d6bcaa69f74111612aed3cc242e78e1b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 209135, "upload_time": "2018-02-26T22:23:01", "url": "https://files.pythonhosted.org/packages/7c/97/45ad6ffc1749a5cc23868f2b3ebb1c83a7fc0293b745562e14bf2380a6b0/vip_hci-0.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "32f342d51d43a0fc4c791c462773e7be", "sha256": "ffe4dc078493e5b504769a10ebc0c559d8875eec1b6ceed9ebfd8efa2a0f3796" }, "downloads": -1, "filename": "vip_hci-0.9.2.tar.gz", "has_sig": false, "md5_digest": "32f342d51d43a0fc4c791c462773e7be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152594, "upload_time": "2018-02-26T22:23:03", "url": "https://files.pythonhosted.org/packages/f7/eb/4b94ffd8ebee5476718b10bdb9d0a52cb8db63f40366f5206c618be473e7/vip_hci-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "104c107bffb0c6c132d622f2795cb3a2", "sha256": "74bb2ea5bc058f12d8075c3e571bb1096e424aa950c7b6e706e1c0f64e6bfd6d" }, "downloads": -1, "filename": "vip_hci-0.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "104c107bffb0c6c132d622f2795cb3a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 209444, "upload_time": "2018-03-02T08:02:07", "url": "https://files.pythonhosted.org/packages/e3/25/64c79df8c34bcbf29e8c98ad1c82b4a19d49ff08f5826c90f7b9bcee077b/vip_hci-0.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36edf46dc516b69303392b7e7bfb28d3", "sha256": "d9a180e72d67d3b97ed3fbdd9b61db0f8e39ec55b586997a73c57c9a48474899" }, "downloads": -1, "filename": "vip_hci-0.9.3.tar.gz", "has_sig": false, "md5_digest": "36edf46dc516b69303392b7e7bfb28d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152919, "upload_time": "2018-03-02T08:02:12", "url": "https://files.pythonhosted.org/packages/46/3f/282cd916e6f5e88f24be4ceaedb97bf3390ba347818d02532ec4827427df/vip_hci-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "d74d328b536ce9c933e33ca66be545e6", "sha256": "60e02311c792b829afa54aae021b9f41b3a560a761e227fae9474a09d7e407ef" }, "downloads": -1, "filename": "vip_hci-0.9.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d74d328b536ce9c933e33ca66be545e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 207820, "upload_time": "2018-03-15T11:23:02", "url": "https://files.pythonhosted.org/packages/a7/81/fcf876a095c40b4cea62d9fa600dedf8a5add4029f50ea83662e881b8c5b/vip_hci-0.9.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39efe5850cdd991df4803b897d408cfe", "sha256": "5db493cf6597ab8f5e09d5b86d2ab78f23c84b4eff5961aec04e4ab02af11561" }, "downloads": -1, "filename": "vip_hci-0.9.4.tar.gz", "has_sig": false, "md5_digest": "39efe5850cdd991df4803b897d408cfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151786, "upload_time": "2018-03-15T11:23:04", "url": "https://files.pythonhosted.org/packages/db/1f/70bc13f6c10cf1fc084e80abad2151112539f32e0bd49a78b5dd842ce0a3/vip_hci-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "f3ca6887386936f280a9651d90b49175", "sha256": "9e895a40f65dffab534dba620a3dd655e0070fc695618d6a9a332fe53a9c73d1" }, "downloads": -1, "filename": "vip_hci-0.9.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3ca6887386936f280a9651d90b49175", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 220213, "upload_time": "2018-04-16T14:31:12", "url": "https://files.pythonhosted.org/packages/9b/5f/964f323daf8fedba7f49e828ffde88d9b2306ab0cf8ec046aaf5957d0881/vip_hci-0.9.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e9bfd59ed21f8b46e2fc42b9e3b41cf", "sha256": "eb3587792536d05e67459be1c0d0366ba7d68c903c58f549a50f63b500f44744" }, "downloads": -1, "filename": "vip_hci-0.9.5.tar.gz", "has_sig": false, "md5_digest": "4e9bfd59ed21f8b46e2fc42b9e3b41cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158648, "upload_time": "2018-04-16T14:31:14", "url": "https://files.pythonhosted.org/packages/14/dd/307f7fd9d80ddc2c153e12d850d7a288bfd0bf99e574ca0ef9ed6398d2b5/vip_hci-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "e26d5a603ee3a4915db6510e3f380e31", "sha256": "0591a0bd14e55014914cbac51a6de814e6db4a23a5b549f7ddd6fd5c2849923b" }, "downloads": -1, "filename": "vip_hci-0.9.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e26d5a603ee3a4915db6510e3f380e31", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 250498, "upload_time": "2018-05-04T18:32:19", "url": "https://files.pythonhosted.org/packages/f2/c2/b45f42369919e5a56acb5e85fefa1db19b5e7cd5f72b3695e32f8d91e4e2/vip_hci-0.9.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "21923b7d3b86e76939a0a569a89f1667", "sha256": "0c164eb974e7ffb9388b1e572b48ff837cbd63d614ea9b0c14cd38fdb98605d4" }, "downloads": -1, "filename": "vip_hci-0.9.6.tar.gz", "has_sig": false, "md5_digest": "21923b7d3b86e76939a0a569a89f1667", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178439, "upload_time": "2018-05-04T18:32:20", "url": "https://files.pythonhosted.org/packages/7a/c3/6869bf42bb507e392e5d5e1498b22ffa10e52cf15640be46d0e4bbb2e41b/vip_hci-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "f3848aabd6ea62404358651a0e792a7a", "sha256": "7a88b6d82fb516fa665617ced5e44788ca87811102335815a691a6f32cf187c4" }, "downloads": -1, "filename": "vip_hci-0.9.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3848aabd6ea62404358651a0e792a7a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 306363, "upload_time": "2018-06-22T18:22:05", "url": "https://files.pythonhosted.org/packages/b3/99/a37b024116acc6cf59b0bda2ed000e1b9fb456ae1fca6deb84017dbef141/vip_hci-0.9.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7aae9f15ee806b581b13b52a10d74759", "sha256": "4c2cfc6f0d2ec25526d3165eeaa6d186582364c572032d775cb42b77d81342be" }, "downloads": -1, "filename": "vip_hci-0.9.7.tar.gz", "has_sig": false, "md5_digest": "7aae9f15ee806b581b13b52a10d74759", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194765, "upload_time": "2018-06-22T18:22:06", "url": "https://files.pythonhosted.org/packages/d6/f5/74c76f0277e68868112590e35927ff0bd3218b3563a0d177f0e421125628/vip_hci-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "bb908d7d1836d740c5b5e177d3451d10", "sha256": "caa49524537100bed5da8fca694e9aeb46e641d5e5eb23d43a2cb8c15932cb7f" }, "downloads": -1, "filename": "vip_hci-0.9.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb908d7d1836d740c5b5e177d3451d10", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 326860, "upload_time": "2018-09-19T11:35:36", "url": "https://files.pythonhosted.org/packages/01/b0/8b0113d74031ace28eebf89b32381108370d1771561700df60e7b188cdcc/vip_hci-0.9.8-py2.py3-none-any.whl" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "8b23850fb633fe89345b79948b6388cc", "sha256": "e0d79dbd0d7268d343cb04f3e0a4935709898ce222062c1552db0ea78ad7ca63" }, "downloads": -1, "filename": "vip_hci-0.9.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8b23850fb633fe89345b79948b6388cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 330386, "upload_time": "2019-03-30T17:03:25", "url": "https://files.pythonhosted.org/packages/6a/30/8c621d263bd7bcfbe79dac761315416a1f39868fd06d16158c74165cb435/vip_hci-0.9.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7f17e54c5f26a57847b44e72f9311ff", "sha256": "227d2efecb1442ac9b6a1ce5de18df977d586f0109e594fbdb0dac7335ca6a22" }, "downloads": -1, "filename": "vip_hci-0.9.9.tar.gz", "has_sig": false, "md5_digest": "c7f17e54c5f26a57847b44e72f9311ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 216199, "upload_time": "2019-03-30T17:03:27", "url": "https://files.pythonhosted.org/packages/51/c2/3a9c21b4ce980a10667394f20dcedff29afa7794ebed85a1c3aaca8a22a4/vip_hci-0.9.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "59297fc9e9deeddca8239ff0409ff239", "sha256": "7e88adfca54dbbae304bed9d4b8a69c81288f1941e86c1aa17b97ee69ad556f9" }, "downloads": -1, "filename": "vip_hci-0.9.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "59297fc9e9deeddca8239ff0409ff239", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 345211, "upload_time": "2019-07-29T20:57:08", "url": "https://files.pythonhosted.org/packages/31/2e/b42cd028fd3bf9b2fb3925bc0c9facc586b672d6a7c4e3e0afb311dab16c/vip_hci-0.9.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b498ef4d75156495e38863152020750", "sha256": "f97f49b664775dd2f231d6b0a81acab79eea4b9854bebba71222b95e7467bce5" }, "downloads": -1, "filename": "vip_hci-0.9.11.tar.gz", "has_sig": false, "md5_digest": "4b498ef4d75156495e38863152020750", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219495, "upload_time": "2019-07-29T20:57:11", "url": "https://files.pythonhosted.org/packages/ff/72/0cb32519e87d36e5326108a54607f0dd081b6322a2447391ca0db3544084/vip_hci-0.9.11.tar.gz" } ] }