{ "info": { "author": "Nicolas Hennion", "author_email": "nicolas@nicolargo.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console :: Curses", "Environment :: Web Environment", "Framework :: Bottle", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: System Administrators", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: System :: Monitoring" ], "description": "===============================\nGlances - An eye on your system\n===============================\n\n.. image:: https://img.shields.io/pypi/v/glances.svg\n :target: https://pypi.python.org/pypi/Glances\n\n.. image:: https://img.shields.io/github/stars/nicolargo/glances.svg\n :target: https://github.com/nicolargo/glances/\n :alt: Github stars\n\n.. image:: https://pepy.tech/badge/glances/month\n :target: https://pepy.tech/project/glances\n :alt: Downloads\n\n.. image:: https://img.shields.io/travis/nicolargo/glances/master.svg?maxAge=3600&label=Linux%20/%20BSD%20/%20macOS\n :target: https://travis-ci.org/nicolargo/glances\n :alt: Linux tests (Travis)\n\n.. image:: https://img.shields.io/appveyor/ci/nicolargo/glances/master.svg?maxAge=3600&label=Windows\n :target: https://ci.appveyor.com/project/nicolargo/glances\n :alt: Windows tests (Appveyor)\n\n.. image:: https://scrutinizer-ci.com/g/nicolargo/glances/badges/quality-score.png?b=develop\n :target: https://scrutinizer-ci.com/g/nicolargo/glances/?branch=develop\n\n.. image:: https://img.shields.io/badge/Donate-PayPal-green.svg\n :target: https://www.paypal.me/nicolargo\n\n.. image:: https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40nicolargo\n :target: https://twitter.com/nicolargo\n\nSummary\n=======\n\n**Glances** is a cross-platform monitoring tool which aims to present a\nlarge amount of monitoring information through a curses or Web\nbased interface. The information dynamically adapts depending on the\nsize of the user interface.\n\n.. image:: https://raw.githubusercontent.com/nicolargo/glances/develop/docs/_static/glances-summary.png\n\nIt can also work in client/server mode. Remote monitoring could be done\nvia terminal, Web interface or API (XML-RPC and RESTful). Stats can also\nbe exported to files or external time/value databases.\n\n.. image:: https://raw.githubusercontent.com/nicolargo/glances/develop/docs/_static/glances-responsive-webdesign.png\n\nGlances is written in Python and uses libraries to grab information from\nyour system. It is based on an open architecture where developers can\nadd new plugins or exports modules.\n\nRequirements\n============\n\n- ``python 2.7,>=3.4``\n- ``psutil>=5.3.0`` (better with latest version)\n\nOptional dependencies:\n\n- ``bernhard`` (for the Riemann export module)\n- ``bottle`` (for Web server mode)\n- ``cassandra-driver`` (for the Cassandra export module)\n- ``couchdb`` (for the CouchDB export module)\n- ``docker`` (for the Docker monitoring support) [Linux/macOS-only]\n- ``elasticsearch`` (for the Elastic Search export module)\n- ``hddtemp`` (for HDD temperature monitoring support) [Linux-only]\n- ``influxdb`` (for the InfluxDB export module)\n- ``kafka-python`` (for the Kafka export module)\n- ``netifaces`` (for the IP plugin)\n- ``nvidia-ml-py3`` (for the GPU plugin)\n- ``pika`` (for the RabbitMQ/ActiveMQ export module)\n- ``potsdb`` (for the OpenTSDB export module)\n- ``prometheus_client`` (for the Prometheus export module)\n- ``py-cpuinfo`` (for the Quicklook CPU info module)\n- ``pygal`` (for the graph export module)\n- ``pymdstat`` (for RAID support) [Linux-only]\n- ``pySMART.smartx`` (for HDD Smart support) [Linux-only]\n- ``pysnmp`` (for SNMP support)\n- ``pystache`` (for the action script feature)\n- ``pyzmq`` (for the ZeroMQ export module)\n- ``requests`` (for the Ports, Cloud plugins and RESTful export module)\n- ``scandir`` (for the Folders plugin) [Only for Python < 3.5]\n- ``statsd`` (for the StatsD export module)\n- ``wifi`` (for the wifi plugin) [Linux-only]\n- ``zeroconf`` (for the autodiscover mode)\n\n*Note for Python 2.6 users*\n\nGlances no longer supports Python 2.6. Please upgrade\nto a minimum Python version of 2.7/3.4+ or downgrade to Glances 2.6.2 (last version\nwith Python 2.6 support).\n\n*Note for CentOS Linux 6 and 7 users*\n\nPython 2.7 and 3.4 are now available via SCL repositories. See:\nhttps://lists.centos.org/pipermail/centos-announce/2015-December/021555.html.\n\nInstallation\n============\n\nThere are several methods to test/install Glances on your system. Choose your weapon!\n\nGlances Auto Install script: the total way\n------------------------------------------\n\nTo install both dependencies and the latest Glances production ready version\n(aka *master* branch), just enter the following command line:\n\n.. code-block:: console\n\n curl -L https://bit.ly/glances | /bin/bash\n\nor\n\n.. code-block:: console\n\n wget -O- https://bit.ly/glances | /bin/bash\n\n*Note*: This is only supported on some GNU/Linux distributions and Mac OS X.\nIf you want to support other distributions, please contribute to `glancesautoinstall`_.\n\nPyPI: The simple way\n--------------------\n\nGlances is on ``PyPI``. By using PyPI, you will be using the latest\nstable version.\n\nTo install, simply use ``pip``:\n\n.. code-block:: console\n\n pip install glances\n\n*Note*: Python headers are required to install `psutil`_. For example,\non Debian/Ubuntu you need to install first the *python-dev* package.\nFor Fedora/CentOS/RHEL install first *python-devel* package. For Windows,\njust install psutil from the binary installation file.\n\n*Note 2 (for the Wifi plugin)*: If you want to use the Wifi plugin, you need\nto install the *wireless-tools* package on your system.\n\nYou can also install the following libraries in order to use optional\nfeatures (like the Web interface, exports modules...):\n\n.. code-block:: console\n\n pip install 'glances[action,browser,cloud,cpuinfo,docker,export,folders,gpu,graph,ip,raid,snmp,web,wifi]'\n\nTo upgrade Glances to the latest version:\n\n.. code-block:: console\n\n pip install --upgrade glances\n pip install --upgrade glances[...]\n\nIf you need to install Glances in a specific user location, use:\n\n.. code-block:: console\n\n export PYTHONUSERBASE=~/mylocalpath\n pip install --user glances\n\nDocker: the funny way\n---------------------\n\nA Glances container is available. It includes the latest development\nHEAD version. You can use it to monitor your server and all your other\ncontainers!\n\nGet the Glances container:\n\n.. code-block:: console\n\n docker pull nicolargo/glances\n\nRun the container in *console mode*:\n\n.. code-block:: console\n\n docker run --rm -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it docker.io/nicolargo/glances\n\nAdditionally, if you want to use your own glances.conf file, you can\ncreate your own Dockerfile:\n\n.. code-block:: console\n\n FROM nicolargo/glances\n COPY glances.conf /glances/conf/glances.conf\n CMD python -m glances -C /glances/conf/glances.conf $GLANCES_OPT\n\nAlternatively, you can specify something along the same lines with\ndocker run options:\n\n.. code-block:: console\n\n docker run -v `pwd`/glances.conf:/glances/conf/glances.conf -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host -it docker.io/nicolargo/glances\n\nWhere \\`pwd\\`/glances.conf is a local directory containing your glances.conf file.\n\nRun the container in *Web server mode* (notice the `GLANCES_OPT` environment\nvariable setting parameters for the glances startup command):\n\n.. code-block:: console\n\n docker run -d --restart=\"always\" -p 61208-61209:61208-61209 -e GLANCES_OPT=\"-w\" -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host docker.io/nicolargo/glances\n\nGNU/Linux\n---------\n\n`Glances` is available on many Linux distributions, so you should be\nable to install it using your favorite package manager. Be aware that\nwhen you use this method the operating system `package`_ for `Glances`\nmay not be the latest version.\n\n\nFreeBSD\n-------\n\nTo install the binary package:\n\n.. code-block:: console\n\n # pkg install py27-glances\n\nTo install Glances from ports:\n\n.. code-block:: console\n\n # cd /usr/ports/sysutils/py-glances/\n # make install clean\n\nmacOS\n-----\n\nIf you do not want to use the glancesautoinstall script, follow this procedure.\n\nmacOS users can install Glances using ``Homebrew`` or ``MacPorts``.\n\nHomebrew\n````````\n\n.. code-block:: console\n\n $ brew install glances\n\nMacPorts\n````````\n\n.. code-block:: console\n\n $ sudo port install glances\n\nWindows\n-------\n\nInstall `Python`_ for Windows (Python 2.7.9+ and 3.4+ ship with pip) and\nthen run the following command:\n\n.. code-block:: console\n\n $ pip install glances\n\nAlternatively, you could clone the repository and install with the following command.\n\n.. code-block:: console\n\n $ git clone https://github.com/nicolargo/glances.git\n $ cd glances\n $ python setup.py install\n\n\nAndroid\n-------\n\nYou need a rooted device and the `Termux`_ application (available on the\nGoogle Play Store).\n\nStart Termux on your device and enter:\n\n.. code-block:: console\n\n $ apt update\n $ apt upgrade\n $ apt install clang python python-dev\n $ pip install bottle\n $ pip install glances\n\nAnd start Glances:\n\n.. code-block:: console\n\n $ glances\n\nYou can also run Glances in server mode (-s or -w) in order to remotely\nmonitor your Android device.\n\nSource\n------\n\nTo install Glances from source:\n\n.. code-block:: console\n\n $ wget https://github.com/nicolargo/glances/archive/vX.Y.tar.gz -O - | tar xz\n $ cd glances-*\n # python setup.py install\n\n*Note*: Python headers are required to install psutil.\n\nChef\n----\n\nAn awesome ``Chef`` cookbook is available to monitor your infrastructure:\nhttps://supermarket.chef.io/cookbooks/glances (thanks to Antoine Rouyer)\n\nPuppet\n------\n\nYou can install Glances using ``Puppet``: https://github.com/rverchere/puppet-glances\n\nAnsible\n-------\n\nA Glances ``Ansible`` role is available: https://galaxy.ansible.com/zaxos/glances-ansible-role/\n\nUsage\n=====\n\nFor the standalone mode, just run:\n\n.. code-block:: console\n\n $ glances\n\nFor the Web server mode, run:\n\n.. code-block:: console\n\n $ glances -w\n\nand enter the URL ``http://:61208`` in your favorite web browser.\n\nFor the client/server mode, run:\n\n.. code-block:: console\n\n $ glances -s\n\non the server side and run:\n\n.. code-block:: console\n\n $ glances -c \n\non the client one.\n\nYou can also detect and display all Glances servers available on your\nnetwork or defined in the configuration file:\n\n.. code-block:: console\n\n $ glances --browser\n\nYou can also display raw stats on stdout:\n\n.. code-block:: console\n\n $ glances --stdout cpu.user,mem.used,load\n cpu.user: 30.7\n mem.used: 3278204928\n load: {'cpucore': 4, 'min1': 0.21, 'min5': 0.4, 'min15': 0.27}\n cpu.user: 3.4\n mem.used: 3275251712\n load: {'cpucore': 4, 'min1': 0.19, 'min5': 0.39, 'min15': 0.27}\n ...\n\nor in a CSV format thanks to the stdout-csv option:\n\n.. code-block:: console\n\n $ glances --stdout-csv now,cpu.user,mem.used,load\n now,cpu.user,mem.used,load.cpucore,load.min1,load.min5,load.min15\n 2018-12-08 22:04:20 CEST,7.3,5948149760,4,1.04,0.99,1.04\n 2018-12-08 22:04:23 CEST,5.4,5949136896,4,1.04,0.99,1.04\n ...\n\nand RTFM, always.\n\nDocumentation\n=============\n\nFor complete documentation have a look at the readthedocs_ website.\n\nIf you have any question (after RTFM!), please post it on the official Q&A `forum`_.\n\nGateway to other services\n=========================\n\nGlances can export stats to: ``CSV`` file, ``JSON`` file, ``InfluxDB``, ``Cassandra``, ``CouchDB``,\n``OpenTSDB``, ``Prometheus``, ``StatsD``, ``ElasticSearch``, ``RabbitMQ/ActiveMQ``,\n``ZeroMQ``, ``Kafka``, ``Riemann`` and ``RESTful`` server.\n\nHow to contribute ?\n===================\n\nIf you want to contribute to the Glances project, read this `wiki`_ page.\n\nThere is also a chat dedicated to the Glances developers:\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n :target: https://gitter.im/nicolargo/glances?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n\nDonation\n========\n\nIf this project help you, you can give me a tip ;)\n\n.. image:: https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\n :target: https://www.paypal.me/nicolargo\n\nAuthor\n======\n\nNicolas Hennion (@nicolargo) \n\n.. image:: https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40nicolargo\n :target: https://twitter.com/nicolargo\n\nLicense\n=======\n\nGlances is distributed under the LGPL version 3 license. See ``COPYING`` for more details.\n\n.. _psutil: https://github.com/giampaolo/psutil\n.. _glancesautoinstall: https://github.com/nicolargo/glancesautoinstall\n.. _Python: https://www.python.org/getit/\n.. _Termux: https://play.google.com/store/apps/details?id=com.termux\n.. _readthedocs: https://glances.readthedocs.io/\n.. _forum: https://groups.google.com/forum/?hl=en#!forum/glances-users\n.. _wiki: https://github.com/nicolargo/glances/wiki/How-to-contribute-to-Glances-%3F\n.. _package: https://repology.org/metapackage/glances/packages\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/nicolargo/glances", "keywords": "cli curses monitoring system", "license": "LGPLv3", "maintainer": "", "maintainer_email": "", "name": "Glances", "package_url": "https://pypi.org/project/Glances/", "platform": "", "project_url": "https://pypi.org/project/Glances/", "project_urls": { "Homepage": "https://github.com/nicolargo/glances" }, "release_url": "https://pypi.org/project/Glances/3.1.3/", "requires_dist": null, "requires_python": "", "summary": "A cross-platform curses-based monitoring tool", "version": "3.1.3" }, "last_serial": 5966770, "releases": { "1.3.1": [], "1.3.2": [], "1.3.3": [], "1.3.4": [], "1.3.5": [], "1.3.6": [], "1.3.7": [], "1.4": [], "1.4.1": [], "1.4.1.1": [], "1.4.2": [], "1.4.2.1": [], "1.5": [], "1.5.1": [], "1.5.2": [], "1.6": [], "1.6.1": [], "1.7": [ { "comment_text": "", "digests": { "md5": "c6e623151a0d343b894bbc91f2816e30", "sha256": "86b723e79b30d08111186e2c859d710218d98bff483f9606e6fe6354578f6011" }, "downloads": -1, "filename": "Glances-1.7.tar.gz", "has_sig": false, "md5_digest": "c6e623151a0d343b894bbc91f2816e30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 647512, "upload_time": "2013-08-10T13:53:03", "url": "https://files.pythonhosted.org/packages/38/18/3cedaf71e1ae5ce38b098b5a4f477082b1eb4e25da29139b504763461c5a/Glances-1.7.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "8235f9ac59758cf752ce78d6fb8e6f27", "sha256": "3eec5495e1eb57c1310e9f095fe584537baa4e66c2d3d320985d8563cd40c3eb" }, "downloads": -1, "filename": "Glances-1.7.1.tar.gz", "has_sig": false, "md5_digest": "8235f9ac59758cf752ce78d6fb8e6f27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1222783, "upload_time": "2013-08-20T11:55:20", "url": "https://files.pythonhosted.org/packages/d7/31/71fc63ba2358b018dc037e15bd7d19f952a3120ff284c35e70cfb45b8546/Glances-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "0af31aa93237d86778fe837406327a10", "sha256": "8901f4b59422f4a0805f2e556550efbf1dcb0be3e9ceece8c6860377b8df44e5" }, "downloads": -1, "filename": "Glances-1.7.2.tar.gz", "has_sig": false, "md5_digest": "0af31aa93237d86778fe837406327a10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1222969, "upload_time": "2013-11-01T09:17:17", "url": "https://files.pythonhosted.org/packages/52/a0/f837a1d2bd76553575ed96a79649db6fcb5173eefffd63e818626a11b697/Glances-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "ab335ae071687540dd0b30058b6ed4d0", "sha256": "ea21991031143c0b36147d2e0e32adb5b9aa0d17b5e1ec68630cbb51cd0a0de4" }, "downloads": -1, "filename": "Glances-1.7.3.tar.gz", "has_sig": false, "md5_digest": "ab335ae071687540dd0b30058b6ed4d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 674291, "upload_time": "2013-12-15T09:23:44", "url": "https://files.pythonhosted.org/packages/85/22/6daec93b29df56fd5685efe17f9c2e0da65380e6f2e78066a7ab9a1c7af0/Glances-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "522cf14906b407e877771e7c632c5409", "sha256": "72ec290b6bb0410038c4ca9faeb9cfc2414621da45f876c5184bfb11b56e659e" }, "downloads": -1, "filename": "Glances-1.7.4.tar.gz", "has_sig": false, "md5_digest": "522cf14906b407e877771e7c632c5409", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 571227, "upload_time": "2014-01-18T10:03:31", "url": "https://files.pythonhosted.org/packages/11/57/3c741e46a1dfe48da16f349f9b861093a46dd72ba3dcfba9c55afe052c74/Glances-1.7.4.tar.gz" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "8481a7cf632dcd9b749478928d292a70", "sha256": "0a9054f8d308d0e0ea1ee3dbd7d10b9149c86ebf0e56d6397ad6dda2198ed0df" }, "downloads": -1, "filename": "Glances-1.7.5.tar.gz", "has_sig": false, "md5_digest": "8481a7cf632dcd9b749478928d292a70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 571082, "upload_time": "2014-03-11T18:08:44", "url": "https://files.pythonhosted.org/packages/97/06/eefd44312fa7daa1160c1f1ac4b945b65eb2e8c3e534e1ec1034c66b0a5d/Glances-1.7.5.tar.gz" } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "a8d306674a09d774d98affecd4437e8a", "sha256": "1e46baa647c0fdc7ab026709d994a423cd1f6c717e75e9d64e06c11d71252b88" }, "downloads": -1, "filename": "Glances-1.7.6.tar.gz", "has_sig": false, "md5_digest": "a8d306674a09d774d98affecd4437e8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 571379, "upload_time": "2014-03-25T19:04:26", "url": "https://files.pythonhosted.org/packages/7a/16/535f3da61d7ba7ffaa5c17a8acbaf5cdee2ae09951d5e5f6f8b52ce96bb2/Glances-1.7.6.tar.gz" } ], "1.7.7": [ { "comment_text": "", "digests": { "md5": "9f9c9adf2d9a89ad37eda18574a5207b", "sha256": "cfb7f2520f576595e7c746daec104b2cc5b19c43b3a1faf0662cb75d0f005a53" }, "downloads": -1, "filename": "Glances-1.7.7.tar.gz", "has_sig": false, "md5_digest": "9f9c9adf2d9a89ad37eda18574a5207b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 575960, "upload_time": "2014-05-14T09:31:37", "url": "https://files.pythonhosted.org/packages/52/2b/cd6929c584ab492ff74e50cff88ba1c48e0a19c7c44b90e5aca36fa7f476/Glances-1.7.7.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "4073889587195386df476f826256b81b", "sha256": "b573e7ed31e8646c5f588c37eda8f9f186e4c1cfd09074bec20dd991dd638a02" }, "downloads": -1, "filename": "Glances-2.0.tar.gz", "has_sig": false, "md5_digest": "4073889587195386df476f826256b81b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1673386, "upload_time": "2014-06-14T07:54:48", "url": "https://files.pythonhosted.org/packages/b7/d5/df2ade81a198ecded82c69dd61ae693d3ac0f2662bd7df48bfa9d7791bf5/Glances-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "313bc2a161fb6820f554bd3e850f3f8d", "sha256": "5f293ab2993f80692b6cd07b080dc8e79b80cfe66c2d59e094589766106a7d70" }, "downloads": -1, "filename": "Glances-2.0.1.tar.gz", "has_sig": false, "md5_digest": "313bc2a161fb6820f554bd3e850f3f8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3281886, "upload_time": "2014-06-22T08:32:09", "url": "https://files.pythonhosted.org/packages/48/98/da3e2ce15e09c37012136a16401905ba4e8f7247a5a8cfa070a4064c156f/Glances-2.0.1.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "6adebaf54015daa5a0e40aa44f4c3d96", "sha256": "86cfcb9d3976940b6cc68046d47b8c3fe7fc19a39747fbceca8cfe55d0f1cb32" }, "downloads": -1, "filename": "Glances-2.1.tar.gz", "has_sig": false, "md5_digest": "6adebaf54015daa5a0e40aa44f4c3d96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3442211, "upload_time": "2014-09-13T13:37:37", "url": "https://files.pythonhosted.org/packages/f3/ce/bc69fbc1cf006d5b3bb988803fff6eb17dec73ede1ec7f7d737722226392/Glances-2.1.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "1c06a637d64fef94ecfe303188e6ab8a", "sha256": "4a744ff0f8a89d6cf923d216a12f8e78efeda70dadf9eb15ab88e933d6d082fb" }, "downloads": -1, "filename": "Glances-2.1.1.tar.gz", "has_sig": false, "md5_digest": "1c06a637d64fef94ecfe303188e6ab8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3442571, "upload_time": "2014-10-02T19:27:27", "url": "https://files.pythonhosted.org/packages/8e/31/85449ac344dbdc91764aea025eef741b6f1e5176765355ce6f23dedf6db4/Glances-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "35c2aeafec7a52c8b25ddf02385447dc", "sha256": "dfcd980240e6781c1ce717f820a2e57477e5a65b361844572cdd7761d2da434f" }, "downloads": -1, "filename": "Glances-2.1.2.tar.gz", "has_sig": false, "md5_digest": "35c2aeafec7a52c8b25ddf02385447dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3442688, "upload_time": "2014-10-09T20:25:00", "url": "https://files.pythonhosted.org/packages/35/e3/58f61aefb2b105d92af2f3add4865bd02869b312909576faa5b579f89c06/Glances-2.1.2.tar.gz" } ], "2.10": [ { "comment_text": "", "digests": { "md5": "f250c916aea570e275fb05da54e34dae", "sha256": "f1372bdd34404957446694ded5aaaead50c781e80990204311f5457d99a0b31c" }, "downloads": -1, "filename": "Glances-2.10-py2.7.egg", "has_sig": false, "md5_digest": "f250c916aea570e275fb05da54e34dae", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1033068, "upload_time": "2017-05-26T14:17:57", "url": "https://files.pythonhosted.org/packages/53/f2/ce3bd745f70569f69ceb194dc838d4969ee658e73144e11b0ee8e107a71c/Glances-2.10-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "79127b22ab868ad8305c365a070c7f79", "sha256": "107897efb80cca262d1d6a0ea07fd8c8c06e6fb9a7830fc25078e3dfd8c511ca" }, "downloads": -1, "filename": "Glances-2.10-py3.3.egg", "has_sig": false, "md5_digest": "79127b22ab868ad8305c365a070c7f79", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1050808, "upload_time": "2017-05-26T14:17:57", "url": "https://files.pythonhosted.org/packages/50/8d/af4b83dff763bd84af74655b8661bdbca81769de4bd9b3d9a33630acd4b7/Glances-2.10-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "46273623080da86b67e035a1c9e4d4f1", "sha256": "b03301563ddbea812e7b8ff4563b9475839b304d8792975afc942dbcf9ee49f3" }, "downloads": -1, "filename": "Glances-2.10-py3.4.egg", "has_sig": false, "md5_digest": "46273623080da86b67e035a1c9e4d4f1", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1043773, "upload_time": "2017-05-26T14:17:56", "url": "https://files.pythonhosted.org/packages/26/18/0f578de353b9b815e48af3992a93d1f74f9afe167b613d1ac2f81e0f030f/Glances-2.10-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "699ea9b89ef2c881e83ff340db4e5c71", "sha256": "790710f386576916316c146dd32d8fad507b1c87ba1386dd5f78b223798130dc" }, "downloads": -1, "filename": "Glances-2.10-py3.5.egg", "has_sig": false, "md5_digest": "699ea9b89ef2c881e83ff340db4e5c71", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1042523, "upload_time": "2017-05-26T14:18:09", "url": "https://files.pythonhosted.org/packages/5d/71/6eb9c072ead2287ba87a62471b5afecc4c9afd8f5ed72fb4c9a5291b4af9/Glances-2.10-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "61843c0765ce7ba3d08b2d2d90280ebb", "sha256": "e90fcddf437554bb3237a71957953fe0a139ec45a9c12ef28abf9dae8d402ce0" }, "downloads": -1, "filename": "Glances-2.10-py3.6.egg", "has_sig": false, "md5_digest": "61843c0765ce7ba3d08b2d2d90280ebb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1036448, "upload_time": "2017-05-26T14:18:23", "url": "https://files.pythonhosted.org/packages/75/6c/0a6ea21aa309de2c983c9b85d352a5d048ed745d1eefe06fa0fd6e0f9ec0/Glances-2.10-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "934c68bcef612d6ba60b6bf351005338", "sha256": "3e3ebd41a4f627b76ee1cdf107482d81e787efde8a5e41e6568169d38eb2e696" }, "downloads": -1, "filename": "Glances-2.10.tar.gz", "has_sig": false, "md5_digest": "934c68bcef612d6ba60b6bf351005338", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5625608, "upload_time": "2017-05-26T14:18:01", "url": "https://files.pythonhosted.org/packages/dd/82/40bd95f116d3507c5dd1211356c4be676f62cce8fe639c71fa5bf4d7e608/Glances-2.10.tar.gz" } ], "2.11": [ { "comment_text": "", "digests": { "md5": "6f70e0ae67593b0f11abd1063cd58fcd", "sha256": "1c98931a4e2eb8507b28325987c50583ae4fb0ee6ae64a0b19173ae6f77172a2" }, "downloads": -1, "filename": "Glances-2.11-py2.7.egg", "has_sig": false, "md5_digest": "6f70e0ae67593b0f11abd1063cd58fcd", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1059394, "upload_time": "2017-08-27T12:06:35", "url": "https://files.pythonhosted.org/packages/7e/23/2bfad57f5d03e061df7501bbdc6a106d280d4a51226e0750da27dbabc30c/Glances-2.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "875e40e371ee8375cf2779e2dabf4216", "sha256": "5f35c55f4a10806b2ef2aba7ee812dbde80507cf34a5e25356bbf3bfb35680bf" }, "downloads": -1, "filename": "Glances-2.11-py3.3.egg", "has_sig": false, "md5_digest": "875e40e371ee8375cf2779e2dabf4216", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1077377, "upload_time": "2017-08-27T12:05:03", "url": "https://files.pythonhosted.org/packages/ab/81/535a71dee96d7fbafd13c87457c52e7b38723dbfa8637647f641837c0f3b/Glances-2.11-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "fd4306d60abae72ecb2adeaefc62d19b", "sha256": "ad3940a175c5185abb1404403a586d0bb075cb865aa5c666f0b548765b98be89" }, "downloads": -1, "filename": "Glances-2.11-py3.4.egg", "has_sig": false, "md5_digest": "fd4306d60abae72ecb2adeaefc62d19b", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1070157, "upload_time": "2017-08-27T12:06:02", "url": "https://files.pythonhosted.org/packages/85/5c/ee5b69429a2d9dc5b244659ed63686c51e84b877171d4337a68bf63ac420/Glances-2.11-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "aaeb5fbc587acc8a40dc62cd583bdd63", "sha256": "e10ff1e21c2ba400d826cd295810ea5858d9ad0a27062334638b2d3fec78f726" }, "downloads": -1, "filename": "Glances-2.11-py3.5.egg", "has_sig": false, "md5_digest": "aaeb5fbc587acc8a40dc62cd583bdd63", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1068994, "upload_time": "2017-08-27T12:05:55", "url": "https://files.pythonhosted.org/packages/d9/60/23d2a4a5b55b58bbb98c3e9513b98d1bab00c64b9d4db8d06ebe719124d9/Glances-2.11-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "d568bb1c789320791909c571fd655eb9", "sha256": "dcedc24e8164a0f0c01f2db2981b4e1a38837e8ea2efb3957a398f8e2dfc7323" }, "downloads": -1, "filename": "Glances-2.11-py3.6.egg", "has_sig": false, "md5_digest": "d568bb1c789320791909c571fd655eb9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1062835, "upload_time": "2017-08-27T12:06:08", "url": "https://files.pythonhosted.org/packages/ef/5c/7ee7f61440f7a8df2fa507c9a5561059947506f41e62fc1740421739bbdd/Glances-2.11-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c2379666ff7b8d61eaf34ad86f92723f", "sha256": "94c9d54c6d158492aed454918cca91103387e03170397ba8cc7e9328db8dc9a1" }, "downloads": -1, "filename": "Glances-2.11.tar.gz", "has_sig": false, "md5_digest": "c2379666ff7b8d61eaf34ad86f92723f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5658061, "upload_time": "2017-08-27T12:05:06", "url": "https://files.pythonhosted.org/packages/30/b1/6afcda3970053e94e16cc5aa3195a856166323059cff9e762a87c47045a6/Glances-2.11.tar.gz" } ], "2.11.1": [ { "comment_text": "", "digests": { "md5": "5a8c97509ff9c7c20f45f502e90715d9", "sha256": "b369d70835520ff7c4fad63958fcf5a09212d15a6c026131db6d0d3c20cdef5f" }, "downloads": -1, "filename": "Glances-2.11.1.tar.gz", "has_sig": false, "md5_digest": "5a8c97509ff9c7c20f45f502e90715d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5665685, "upload_time": "2017-09-09T08:34:22", "url": "https://files.pythonhosted.org/packages/2c/5b/a27e4c2d2e4d64e66d9b184cb314579ac68784785af628f2b17527573082/Glances-2.11.1.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "c55ba9dac01509828353c0508dbe95d6", "sha256": "d539d3925d7ba18549aed453b769329e4ef2c168a1ae2e41b827c8e08e66e6e9" }, "downloads": -1, "filename": "Glances-2.2.tar.gz", "has_sig": false, "md5_digest": "c55ba9dac01509828353c0508dbe95d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3456806, "upload_time": "2014-12-13T21:52:37", "url": "https://files.pythonhosted.org/packages/ed/99/84f76cdd91c2b3542cc842d98d2a8d1e79c76381724d4ed79fa1d1f0f12c/Glances-2.2.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "b5d7526cf87e3da364f87ec00d2877dd", "sha256": "81d2a9b7132d70b4a156a61a724201bd70ab2edea01bf32e1b279fc4f765f7d5" }, "downloads": -1, "filename": "Glances-2.2.1.tar.gz", "has_sig": false, "md5_digest": "b5d7526cf87e3da364f87ec00d2877dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3458958, "upload_time": "2014-12-22T17:05:50", "url": "https://files.pythonhosted.org/packages/e3/ca/6fbbdd78949383f210e07dc0ae2fe7ab8d57fc77917aacf8d3d668412a51/Glances-2.2.1.tar.gz" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "0022bac9891c914e2e6e86c0c300e58d", "sha256": "b56bb17505b72862358b2d31b6b9a7c0f9045105454d1de0ffed416ad2883612" }, "downloads": -1, "filename": "Glances-2.3.tar.gz", "has_sig": false, "md5_digest": "0022bac9891c914e2e6e86c0c300e58d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918915, "upload_time": "2015-01-31T12:55:51", "url": "https://files.pythonhosted.org/packages/98/71/060dd4113d4aeb3ff2bf0af359b9506b57242c08d61e49a7e6809385bfa7/Glances-2.3.tar.gz" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "c9c4e55227ba8eb1742857275459e96e", "sha256": "f17481a8be11294cea78dd6fe7c3a2b2e78e5ffe9ce992f40ef530785fb00e2b" }, "downloads": -1, "filename": "Glances-2.4.tar.gz", "has_sig": false, "md5_digest": "c9c4e55227ba8eb1742857275459e96e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5497521, "upload_time": "2015-05-20T08:20:49", "url": "https://files.pythonhosted.org/packages/8b/7e/f9151b8088cc61e6a6fcf458128c75771b069f50c5c7956d9daea249d301/Glances-2.4.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "72f8f2f3765219f177327c238857bc63", "sha256": "31e42b4c54fa314d19d5ecc1e724369e26f133ed9c3bff836eec51ee5231eb52" }, "downloads": -1, "filename": "Glances-2.4.1.tar.gz", "has_sig": false, "md5_digest": "72f8f2f3765219f177327c238857bc63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5497603, "upload_time": "2015-05-20T15:27:21", "url": "https://files.pythonhosted.org/packages/3c/73/2e808cfa1bfa247424fd2e28b6ebe94edd87acdac054c709d02da41efbbc/Glances-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "21d8ca9d780bb52101a365c33e65869d", "sha256": "31f1e4c2e129904a373f3b20d6800472375e415e01161168469ccebb320c9517" }, "downloads": -1, "filename": "Glances-2.4.2.tar.gz", "has_sig": false, "md5_digest": "21d8ca9d780bb52101a365c33e65869d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5497895, "upload_time": "2015-05-28T20:13:46", "url": "https://files.pythonhosted.org/packages/f5/81/2a3cd2a3f214b9392ae392f7b3bde5b3af23f34904e9d29e6e7bfce24f1f/Glances-2.4.2.tar.gz" } ], "2.5": [ { "comment_text": "", "digests": { "md5": "70a7825a7b32048885f18ad3f8500294", "sha256": "88a8a33d457713849e1a30315d70ef1a2947bc1b39788d955b2b7d85498ade04" }, "downloads": -1, "filename": "Glances-2.5.tar.gz", "has_sig": false, "md5_digest": "70a7825a7b32048885f18ad3f8500294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5806971, "upload_time": "2015-10-05T19:27:20", "url": "https://files.pythonhosted.org/packages/1d/13/bfe748fc7bcd84cd21159fec86dad113cabc243fd40667651d74e0edb123/Glances-2.5.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "b8a7815353cf10e1aafffc6f4f235926", "sha256": "d3db40ce50b7157a94195aa0076d0eadae85dc4f24557e51c3b1a4dbd972359e" }, "downloads": -1, "filename": "Glances-2.5.1.tar.gz", "has_sig": false, "md5_digest": "b8a7815353cf10e1aafffc6f4f235926", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5807072, "upload_time": "2015-10-10T09:30:04", "url": "https://files.pythonhosted.org/packages/d5/d4/1299a8df135db47b911e82398285049e788b90576f39ebbe51f3d77e9281/Glances-2.5.1.tar.gz" } ], "2.6": [ { "comment_text": "", "digests": { "md5": "217cdfdec8b9f1db005e5f9cc9c9d5af", "sha256": "e5b06f22af099b4486132693e510476a729d4bb6213fe3c465bdf2c088a82166" }, "downloads": -1, "filename": "Glances-2.6.tar.gz", "has_sig": false, "md5_digest": "217cdfdec8b9f1db005e5f9cc9c9d5af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8230684, "upload_time": "2016-03-16T16:49:50", "url": "https://files.pythonhosted.org/packages/29/40/8ed28617649e1b538c1a4c40c7d24ea373758d1949424c4080e36d255287/Glances-2.6.tar.gz" } ], "2.6.1": [ { "comment_text": "", "digests": { "md5": "576e1cb937c1d1f384edaf20e4e33d98", "sha256": "822f0f37455d46732a059f8e2b49762edb90ad66edd61cdf869a4b3683ac2b59" }, "downloads": -1, "filename": "Glances-2.6.1.tar.gz", "has_sig": false, "md5_digest": "576e1cb937c1d1f384edaf20e4e33d98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8233445, "upload_time": "2016-03-26T16:51:00", "url": "https://files.pythonhosted.org/packages/c3/ed/60462e0d28516132e7374b384fa698d7612a2371832314a30f66d6c908ba/Glances-2.6.1.tar.gz" } ], "2.6.2": [ { "comment_text": "", "digests": { "md5": "3c6bc4c4ded2dbebc964b7affa6fee79", "sha256": "0024461fade788e9b7411720fca7835e2971d0f41f240e396a53d975e1d5640d" }, "downloads": -1, "filename": "Glances-2.6.2.tar.gz", "has_sig": false, "md5_digest": "3c6bc4c4ded2dbebc964b7affa6fee79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8233848, "upload_time": "2016-05-12T09:02:40", "url": "https://files.pythonhosted.org/packages/36/71/7f6003765bc6dcc7a988ab688ca238df661b11f1687a090a229fa7d32e16/Glances-2.6.2.tar.gz" } ], "2.7": [ { "comment_text": "", "digests": { "md5": "117bc54e2e16d8e02f581b100ea40f74", "sha256": "4beab1d9532fb016a8236a7449b1ce994f391b7021d66b5cb23d8a26233ad48e" }, "downloads": -1, "filename": "Glances-2.7.tar.gz", "has_sig": false, "md5_digest": "117bc54e2e16d8e02f581b100ea40f74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13277344, "upload_time": "2016-09-10T09:41:25", "url": "https://files.pythonhosted.org/packages/42/c3/21301528ddc895a4cb9c0f606e39bd301c42ec6837a2ff24c52eae4493b3/Glances-2.7.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "77a036e9cf988c543b5b216d37244871", "sha256": "afdfdb4b14ae514422c4a882788800473c6cff53719266735c9a2af400c14b86" }, "downloads": -1, "filename": "Glances-2.7.1.tar.gz", "has_sig": false, "md5_digest": "77a036e9cf988c543b5b216d37244871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13277845, "upload_time": "2016-09-11T09:14:11", "url": "https://files.pythonhosted.org/packages/1f/10/ba2025883d595499a7bba5392a548a8fddd934af630a981d7bf8cbd1ec6e/Glances-2.7.1.tar.gz" } ], "2.8": [ { "comment_text": "", "digests": { "md5": "359ca7c9c4ececbd9b327046d66bd77b", "sha256": "744dd013311be543b42a47b68e1a843626343ce89153ddbafd50dd9f3b23739d" }, "downloads": -1, "filename": "Glances-2.8.tar.gz", "has_sig": false, "md5_digest": "359ca7c9c4ececbd9b327046d66bd77b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22073262, "upload_time": "2017-01-21T14:28:23", "url": "https://files.pythonhosted.org/packages/4f/b7/7b3f8d308550cafd96b07b55574538b46f718de236390bf526be536cf53f/Glances-2.8.tar.gz" } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "2201ed829e9bd2a82170284126d7063a", "sha256": "7ff8304af7c20e987d745982330223bd4827ed31f8f44273ffb17a4c5e282270" }, "downloads": -1, "filename": "Glances-2.8.1-py2.7.egg", "has_sig": false, "md5_digest": "2201ed829e9bd2a82170284126d7063a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1004301, "upload_time": "2017-02-06T18:32:54", "url": "https://files.pythonhosted.org/packages/77/f8/9ccd48a2489bcdcd53fed2cddaa4e9fa6b168a49b2267922418673bbbe2e/Glances-2.8.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e7408921b94641de012476c926c278cd", "sha256": "b154be8de18e582cebdc00f9872db217d2b6c238274e78606b25c50325faebf6" }, "downloads": -1, "filename": "Glances-2.8.1-py3.3.egg", "has_sig": false, "md5_digest": "e7408921b94641de012476c926c278cd", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1021016, "upload_time": "2017-02-06T18:32:53", "url": "https://files.pythonhosted.org/packages/c2/80/2aeb57bb55cae8f2c6497b1d503317f9d3102e7f6c451139e8eda0d230e4/Glances-2.8.1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "46f666c74133af55535eab9bedd3b17f", "sha256": "79e21638cd5483e10eb05a14c6e7c967973aac5f07bb072dedf239061036be4d" }, "downloads": -1, "filename": "Glances-2.8.1-py3.4.egg", "has_sig": false, "md5_digest": "46f666c74133af55535eab9bedd3b17f", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1014207, "upload_time": "2017-02-06T18:32:53", "url": "https://files.pythonhosted.org/packages/67/7f/27bf8c6c19fc35a5dd84989f4d93f9443238c7c606a968d68f4e8f180184/Glances-2.8.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "e31ab32204420612fb3b1b7c2b83c296", "sha256": "85e7986f200cfee551381b5b0e599c1b608a08f31411d2731180b2c7e3538d50" }, "downloads": -1, "filename": "Glances-2.8.1-py3.5.egg", "has_sig": false, "md5_digest": "e31ab32204420612fb3b1b7c2b83c296", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1013095, "upload_time": "2017-02-06T18:32:54", "url": "https://files.pythonhosted.org/packages/a3/67/8a075e95fd6cad04be16f74e844af060f34bacaf72210622c7eb76b7a0ae/Glances-2.8.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "a3a7bdea765a3fcce27ba4116564d8de", "sha256": "1698389b74cd65aae8052dab7969a74c12dd6f2d417f4051ca9dfb58631c8c69" }, "downloads": -1, "filename": "Glances-2.8.1-py3.6.egg", "has_sig": false, "md5_digest": "a3a7bdea765a3fcce27ba4116564d8de", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1007453, "upload_time": "2017-02-06T18:34:07", "url": "https://files.pythonhosted.org/packages/6d/e2/c3521843710bfd9118114c4595456029332d0fb8d8ad678b07b05003091d/Glances-2.8.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "6c33f583484b2c87da723099246ef9a9", "sha256": "12c10f9a9cac9c7ba70b0b5aa6551a97599731f2c8751c2cc53232da395c6b8b" }, "downloads": -1, "filename": "Glances-2.8.1.tar.gz", "has_sig": false, "md5_digest": "6c33f583484b2c87da723099246ef9a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5530699, "upload_time": "2017-02-06T18:32:57", "url": "https://files.pythonhosted.org/packages/83/64/a6276f912aa412f534660eae818b3e5f362a24f3652a2cd850311422f342/Glances-2.8.1.tar.gz" } ], "2.8.2": [ { "comment_text": "", "digests": { "md5": "cd0c063725d6933cd95b57bc4032d9b8", "sha256": "07a5e911835878fa6566048590d63808f7bce9e5c801c38b1099b782949edf29" }, "downloads": -1, "filename": "Glances-2.8.2-py2.7.egg", "has_sig": false, "md5_digest": "cd0c063725d6933cd95b57bc4032d9b8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1004407, "upload_time": "2017-02-07T12:22:34", "url": "https://files.pythonhosted.org/packages/17/2b/c1ae63b4b07441d13ac426dbaaa02bc099a38d4071becc6d03b777118da8/Glances-2.8.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "afce2b7fea3f62e4f80e4a62b646b67c", "sha256": "b7cbf4fa38fb49b2d9b7e304acedf4584cb21f2836f839b343fcf705be6a2974" }, "downloads": -1, "filename": "Glances-2.8.2-py3.3.egg", "has_sig": false, "md5_digest": "afce2b7fea3f62e4f80e4a62b646b67c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1021032, "upload_time": "2017-02-07T12:22:52", "url": "https://files.pythonhosted.org/packages/09/5b/aacf4fd9215b5840d17df311da3089684bd055dd7ea96c36ff0383c7d3d1/Glances-2.8.2-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "e9674b19c2f4bbe928573096dc70d622", "sha256": "4ce1f56e1f9bb95024ae46d1b1460df1310f215a575906bf296ec0a36aa750e5" }, "downloads": -1, "filename": "Glances-2.8.2-py3.4.egg", "has_sig": false, "md5_digest": "e9674b19c2f4bbe928573096dc70d622", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1014276, "upload_time": "2017-02-07T12:23:37", "url": "https://files.pythonhosted.org/packages/e0/0d/04c9914cee163c41306a1d4c44f9b2c4c58f0f26d2a60415b966d15abc92/Glances-2.8.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "3d96f6a71009c4eae0162fff90ca2212", "sha256": "c483f8e2f97c582ac9402bcd20946933bd0d2b8df4b36e5fa60b4847a52ded9c" }, "downloads": -1, "filename": "Glances-2.8.2-py3.5.egg", "has_sig": false, "md5_digest": "3d96f6a71009c4eae0162fff90ca2212", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1013139, "upload_time": "2017-02-07T12:23:45", "url": "https://files.pythonhosted.org/packages/78/35/732cce187cf444511fc47d74057f0d4907e517d6fdc5e00a306f58a72d55/Glances-2.8.2-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "179f3dba13c61ecc30bf7d8e149c09af", "sha256": "5e34fb162b99d5f41f28f36530add9ebb2353584a7e834f25fcb0655471c2a2e" }, "downloads": -1, "filename": "Glances-2.8.2-py3.6.egg", "has_sig": false, "md5_digest": "179f3dba13c61ecc30bf7d8e149c09af", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1007453, "upload_time": "2017-02-07T12:24:22", "url": "https://files.pythonhosted.org/packages/1f/27/29abe6d5befbfc1af286d6f757617243f6e913ecc3f92fd0791f3f2b0157/Glances-2.8.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c0c2ab53948449f848adbec8fc3473c7", "sha256": "6095dcdf0b7a6b6819cc647ee9733ddce309c0745107258850d601109e3411d0" }, "downloads": -1, "filename": "Glances-2.8.2.tar.gz", "has_sig": false, "md5_digest": "c0c2ab53948449f848adbec8fc3473c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5530753, "upload_time": "2017-02-07T12:22:38", "url": "https://files.pythonhosted.org/packages/3e/ac/69d4268940943537bcdeaafcaa3b0c785dfee475c04a3a10ad7668b49082/Glances-2.8.2.tar.gz" } ], "2.8.3": [ { "comment_text": "", "digests": { "md5": "7e6dfe54adc8a42cf53fdefd257ecec1", "sha256": "04d286726e39d109103e5f0e5c1386c45ee6f73fde77af3da86e519b468d1a8b" }, "downloads": -1, "filename": "Glances-2.8.3.tar.gz", "has_sig": false, "md5_digest": "7e6dfe54adc8a42cf53fdefd257ecec1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22187008, "upload_time": "2017-03-09T20:03:51", "url": "https://files.pythonhosted.org/packages/4f/b1/9f11eba4a1b309a9ff7634481c88832667d0c68940beb2dd22ef81d1128c/Glances-2.8.3.tar.gz" } ], "2.8.4": [ { "comment_text": "", "digests": { "md5": "50eda73b19fbefb737ee764f93225758", "sha256": "217d2933997e7be890baf765f521cc828669001a3daa016eae5203f4621bfe8a" }, "downloads": -1, "filename": "Glances-2.8.4-py2.7.egg", "has_sig": false, "md5_digest": "50eda73b19fbefb737ee764f93225758", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1013238, "upload_time": "2017-03-09T20:37:16", "url": "https://files.pythonhosted.org/packages/7c/dc/8065f66c90bf0df5abc0aec4e44d9cfe32b54a03cd1ae41410937c3487a8/Glances-2.8.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9c9473d6c6a23709b945f91affde5072", "sha256": "2373af38d08b9bf6c70f40be74ddc6f1a00a74a1ec028cf053a7420bb8da4146" }, "downloads": -1, "filename": "Glances-2.8.4-py3.3.egg", "has_sig": false, "md5_digest": "9c9473d6c6a23709b945f91affde5072", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1030220, "upload_time": "2017-03-09T20:37:17", "url": "https://files.pythonhosted.org/packages/9a/8f/d320af7a0615c3c890aae24f363d75cfefbb66a30ef4c15ccca529f6aa3d/Glances-2.8.4-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "184c06ef3ff4d25e25a35a6d977c4f43", "sha256": "497f2e7e204bdbf5d8fa0ae60f674e608e2e45128d1c35c5f282f06cfd5a59ae" }, "downloads": -1, "filename": "Glances-2.8.4-py3.4.egg", "has_sig": false, "md5_digest": "184c06ef3ff4d25e25a35a6d977c4f43", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1023158, "upload_time": "2017-03-09T20:38:11", "url": "https://files.pythonhosted.org/packages/7a/6e/2dd509ec32f4c99bf99a1a1ce2117a4b4c973bf647e9c9a4c8542cd9610c/Glances-2.8.4-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "a8bf5c144b5d544c7ba096a57711616b", "sha256": "8dd8ea54901d691ecc046183188355ab723c1433149733fb591ce1796a4c15a8" }, "downloads": -1, "filename": "Glances-2.8.4-py3.5.egg", "has_sig": false, "md5_digest": "a8bf5c144b5d544c7ba096a57711616b", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1021998, "upload_time": "2017-03-09T20:44:01", "url": "https://files.pythonhosted.org/packages/63/38/81e46c4c574dba8a9479a94f5e960885c947ca0521cf0dd93b1f2acebb47/Glances-2.8.4-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "baca5234362e3dc3114a565f9209fc46", "sha256": "24c47af1bc958799523f2275f6574f6c1a4634e3536e999a95abf5640882df3b" }, "downloads": -1, "filename": "Glances-2.8.4-py3.6.egg", "has_sig": false, "md5_digest": "baca5234362e3dc3114a565f9209fc46", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1016223, "upload_time": "2017-03-09T20:38:53", "url": "https://files.pythonhosted.org/packages/3b/4f/aad51721f0f187e5d29695cb466a4b07ebc13723bba3cd46ce19ec2e8dfe/Glances-2.8.4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "f19a53a831048187fe7040a87a9af2eb", "sha256": "a3beb0d2b0034a38e83b78018742e04a5a031b09d7e19b4cb9fea8a3603b373e" }, "downloads": -1, "filename": "Glances-2.8.4.tar.gz", "has_sig": false, "md5_digest": "f19a53a831048187fe7040a87a9af2eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5533767, "upload_time": "2017-03-09T20:37:20", "url": "https://files.pythonhosted.org/packages/82/f4/f3b52bc33bfccfeab1f64316a7db29b9811610d27cbcf35c5a9234d2611e/Glances-2.8.4.tar.gz" } ], "2.8.5": [ { "comment_text": "", "digests": { "md5": "b53ea2f1ce68f7f79bfde082d334c4ae", "sha256": "aef31f8a7073c52b136126f7cb984e98c4690a501646c1f5327fd0c409f4f629" }, "downloads": -1, "filename": "Glances-2.8.5-py2.7.egg", "has_sig": false, "md5_digest": "b53ea2f1ce68f7f79bfde082d334c4ae", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1013069, "upload_time": "2017-03-10T19:33:09", "url": "https://files.pythonhosted.org/packages/c1/1b/6f27fa0b8c3ff95b8843f0906e84e1de88b2eb6d52c476bf726e5cbb42d9/Glances-2.8.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8917b0e51b04729adf545a972379df20", "sha256": "80ad15e242a6d9c12a56d5e2dbbe5cb0f0d983928e2084e617984bd03fcf5a92" }, "downloads": -1, "filename": "Glances-2.8.5-py3.3.egg", "has_sig": false, "md5_digest": "8917b0e51b04729adf545a972379df20", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1030062, "upload_time": "2017-03-10T19:33:03", "url": "https://files.pythonhosted.org/packages/0e/1b/c9e36d47e09a0766c91a1ee7f1a4478e88d739302826f0ac224a3242884a/Glances-2.8.5-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "d2e96530d66bf949197b72a1d30fbef5", "sha256": "5088ff2ef32fc9eb331a090281cac855b5264d66c0e046c65d55b6566e8411fa" }, "downloads": -1, "filename": "Glances-2.8.5-py3.4.egg", "has_sig": false, "md5_digest": "d2e96530d66bf949197b72a1d30fbef5", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1023198, "upload_time": "2017-03-10T19:33:45", "url": "https://files.pythonhosted.org/packages/a0/9e/8d463fbb69557ac40d9ce3e10c14a6edb53426847aaeee2c1ed9faa13b9b/Glances-2.8.5-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "acc4e6ebbed6efad650b1c013fb48a3e", "sha256": "c0a3eec77d961638d84ec5b10e8a3d95551c312392ae1e9cf37ba727cf19a623" }, "downloads": -1, "filename": "Glances-2.8.5-py3.5.egg", "has_sig": false, "md5_digest": "acc4e6ebbed6efad650b1c013fb48a3e", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1022052, "upload_time": "2017-03-10T19:34:00", "url": "https://files.pythonhosted.org/packages/f2/26/893bb4d9557bf1aeb192bc8a411a4abe862d825176340098ea446641a7e1/Glances-2.8.5-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "9b1f8af2c3d5c5b4633a936e74e9fd8d", "sha256": "4eb1c0344697f0d7a9838c52ba99b4f0b3a5fc7fe4fb638d3625789b986a0579" }, "downloads": -1, "filename": "Glances-2.8.5-py3.6.egg", "has_sig": false, "md5_digest": "9b1f8af2c3d5c5b4633a936e74e9fd8d", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1016281, "upload_time": "2017-03-10T19:34:41", "url": "https://files.pythonhosted.org/packages/14/43/084d80a8562596d2bb7372eba7701b8aec0b418e76faa3c2f028a3eed7ff/Glances-2.8.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "01ac6061aacef1f42b8f92e9fb65b84e", "sha256": "43441326b1a97b02f739aeecd6d766a2cf4fdfec5e4e933ce4ffe7cb62ab6207" }, "downloads": -1, "filename": "Glances-2.8.5.tar.gz", "has_sig": false, "md5_digest": "01ac6061aacef1f42b8f92e9fb65b84e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5533755, "upload_time": "2017-03-10T19:33:08", "url": "https://files.pythonhosted.org/packages/9d/85/2563a0af9df906e648ad6b01eef686839d44307f07e288cbfb29d3c26c0a/Glances-2.8.5.tar.gz" } ], "2.8.6": [ { "comment_text": "", "digests": { "md5": "c2e22dfa3b28a7411c4ed091085a649c", "sha256": "47c15ad0fe61e3c28c8129ca457ef8c18a400ea895335c5b0a180e205b2513f1" }, "downloads": -1, "filename": "Glances-2.8.6-py2.7.egg", "has_sig": false, "md5_digest": "c2e22dfa3b28a7411c4ed091085a649c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1013198, "upload_time": "2017-03-11T17:28:03", "url": "https://files.pythonhosted.org/packages/9e/ee/acb6e0c40e1f7a2d4f018fdaa6c9931073772ba089ad3b23f057f70efa83/Glances-2.8.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d6309a01d2c5a479a09b2a6d2c99270b", "sha256": "aee13f8bd7705476ebf0ada0264d3d5bc42c11bc7c9efe5ac44088435c1715cd" }, "downloads": -1, "filename": "Glances-2.8.6-py3.3.egg", "has_sig": false, "md5_digest": "d6309a01d2c5a479a09b2a6d2c99270b", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1030160, "upload_time": "2017-03-11T17:28:18", "url": "https://files.pythonhosted.org/packages/8d/bf/2ffaf57dbb77673c45855b1ce12afa11cb7e43c10547d420cd7ce1df899c/Glances-2.8.6-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "999fff782d9eb8d7aeb2ef7bae11a88c", "sha256": "8e0e5c9c325d80466746f1de4431f16c25e707af742b2edf12f27d9cc5919d75" }, "downloads": -1, "filename": "Glances-2.8.6-py3.4.egg", "has_sig": false, "md5_digest": "999fff782d9eb8d7aeb2ef7bae11a88c", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1023258, "upload_time": "2017-03-11T17:29:03", "url": "https://files.pythonhosted.org/packages/2f/e2/b42694c92354a4ba1e4a7546e79b21d39c245b64731b2adc8a4a0f1e7c96/Glances-2.8.6-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "23af5ea6a9e2727306c0bd9a3e0dc0a6", "sha256": "99c2a5d3483624c01fbddeebc1c37c9a86547dec651859a834701b3ec3151e28" }, "downloads": -1, "filename": "Glances-2.8.6-py3.5.egg", "has_sig": false, "md5_digest": "23af5ea6a9e2727306c0bd9a3e0dc0a6", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1022109, "upload_time": "2017-03-11T17:28:55", "url": "https://files.pythonhosted.org/packages/22/f6/ae8deefccf18e35d8fcac7ae5dc147c3d0349a399e4ec1f39c5ff7b126f4/Glances-2.8.6-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "01fca81382806b980443f3ae2af0b153", "sha256": "ce4e286305c8cbd19adad53ed2d20b1408ae79f5ffbd55df68357acf382c4a42" }, "downloads": -1, "filename": "Glances-2.8.6-py3.6.egg", "has_sig": false, "md5_digest": "01fca81382806b980443f3ae2af0b153", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1016169, "upload_time": "2017-03-11T17:29:57", "url": "https://files.pythonhosted.org/packages/98/df/e5bad95eb846cddc72615a33265bc3c26bd3bee1bc0b2cd6a134137180f8/Glances-2.8.6-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c708e1d16892ac870e7c20633478ae5c", "sha256": "83e75318361425cc976090d72cd5abdf1cc15540557c6b789f9f7b54970e6751" }, "downloads": -1, "filename": "Glances-2.8.6.tar.gz", "has_sig": false, "md5_digest": "c708e1d16892ac870e7c20633478ae5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5533766, "upload_time": "2017-03-11T17:28:07", "url": "https://files.pythonhosted.org/packages/dc/b7/a63916e892fe1aadcc68d4610e3c722eab903e709daddebd3511a93388c3/Glances-2.8.6.tar.gz" } ], "2.8.7": [ { "comment_text": "", "digests": { "md5": "3bf11428538faff4c5fe522d41a70675", "sha256": "7ee89e2a9dab3c1fdd7dbc223accf3990520d7914ecc63d8c2d124845f0685ad" }, "downloads": -1, "filename": "Glances-2.8.7-py2.7.egg", "has_sig": false, "md5_digest": "3bf11428538faff4c5fe522d41a70675", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1013331, "upload_time": "2017-03-12T06:45:57", "url": "https://files.pythonhosted.org/packages/28/53/c60eaa80467178e9805798e64fdafd200e1bb5ce4a2918cbbc907e13654d/Glances-2.8.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "71ca817d2bd815df9ba26af6321c4e65", "sha256": "2d7171d3c580872e01562abc11a287478fbe5b5f2c6b368b53ce5c668ca6c347" }, "downloads": -1, "filename": "Glances-2.8.7-py3.3.egg", "has_sig": false, "md5_digest": "71ca817d2bd815df9ba26af6321c4e65", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1030226, "upload_time": "2017-03-12T06:46:15", "url": "https://files.pythonhosted.org/packages/5a/07/9921bbadc9ac25c7f4ddd8c9db81334bf0b5623385f82c41230f27aae791/Glances-2.8.7-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "a4c37b72366f42df1ba99ca6bf422ea1", "sha256": "8dcbfefc7be8946da7aee9a69a4da51c56d0e4e333ef86dd2a6ae13603a7f4f6" }, "downloads": -1, "filename": "Glances-2.8.7-py3.4.egg", "has_sig": false, "md5_digest": "a4c37b72366f42df1ba99ca6bf422ea1", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1023240, "upload_time": "2017-03-12T06:47:39", "url": "https://files.pythonhosted.org/packages/01/02/49e06fae0806fe82dc12c5652abd45da48d1243c855ceac91437e2caeebf/Glances-2.8.7-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "7ce838f6eb91b80a9a1ecd6ef21ed3e7", "sha256": "3254432079cc644656c5bf0db67379d5409fa6dcec016ebb03eff796115ea891" }, "downloads": -1, "filename": "Glances-2.8.7-py3.5.egg", "has_sig": false, "md5_digest": "7ce838f6eb91b80a9a1ecd6ef21ed3e7", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1022227, "upload_time": "2017-03-12T06:47:15", "url": "https://files.pythonhosted.org/packages/1b/df/a11d7aafa9c4ab94e1fbfdef35a2eaec710f32310cc9dd569461e126a4ed/Glances-2.8.7-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "1e4ed29ab9dcb508e07883907eb1fbdd", "sha256": "f1b992882d51d81e771f08fea9591506247c3d8cdf5f2d90fa31d2e974a100df" }, "downloads": -1, "filename": "Glances-2.8.7-py3.6.egg", "has_sig": false, "md5_digest": "1e4ed29ab9dcb508e07883907eb1fbdd", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1016365, "upload_time": "2017-03-12T06:47:54", "url": "https://files.pythonhosted.org/packages/fc/df/d44fe3fbcf735a48c6ac491e54646af59f505a8d896e8412fd165097ab8e/Glances-2.8.7-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "7d9c36bbbd51fb266b871838bd1a9c9d", "sha256": "c54bac25dfd50c339c1be33d720126c4e8a6c1ef6104539e0acc2fa1b4c528a8" }, "downloads": -1, "filename": "Glances-2.8.7.tar.gz", "has_sig": false, "md5_digest": "7d9c36bbbd51fb266b871838bd1a9c9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5533779, "upload_time": "2017-03-12T06:46:02", "url": "https://files.pythonhosted.org/packages/9f/69/ff963c0d41ba0cdcf9dee8e73ab68fa4b6b95c4b4afda08e743604fc34c9/Glances-2.8.7.tar.gz" } ], "2.8.8": [ { "comment_text": "", "digests": { "md5": "3ae35c60de7bf14200e245da5b2b4a3a", "sha256": "dead541d5df32c8987455b1293a03f1b77f5113201afb589ced8e0d037a54743" }, "downloads": -1, "filename": "Glances-2.8.8-py2.7.egg", "has_sig": false, "md5_digest": "3ae35c60de7bf14200e245da5b2b4a3a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1012902, "upload_time": "2017-03-12T17:20:44", "url": "https://files.pythonhosted.org/packages/80/90/599bfa826f75a413f35806fc8f30dc307b0a40e7d09765faf904672e5276/Glances-2.8.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "eb6149998e579e911ee0e0ca3f697b24", "sha256": "a05f20feccde30815ae2408c85c657cab5383188255a12e588f28cd4466597c2" }, "downloads": -1, "filename": "Glances-2.8.8-py3.3.egg", "has_sig": false, "md5_digest": "eb6149998e579e911ee0e0ca3f697b24", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1029837, "upload_time": "2017-03-12T17:21:10", "url": "https://files.pythonhosted.org/packages/d2/04/7542a492dc07bf4809797e2b3d6932a13f0e8f4d4ea0ad4954635f9682da/Glances-2.8.8-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "19433ed45e6add458b5544350ea2f3fc", "sha256": "1efd4c482c69f29099134f956c23268895842d90372ff348c0cabe7d486ce522" }, "downloads": -1, "filename": "Glances-2.8.8-py3.4.egg", "has_sig": false, "md5_digest": "19433ed45e6add458b5544350ea2f3fc", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1023031, "upload_time": "2017-03-12T17:21:46", "url": "https://files.pythonhosted.org/packages/5c/78/9e4276a1979df1e65d3c116b88295970a9179bcf50f6b201d8458ec0d2a8/Glances-2.8.8-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "f8abd00df8c042f9967ba1f527718bb6", "sha256": "e4188148776e7a92b3347749ffb65684bd7c5a448381e3bb59e5fb851794d469" }, "downloads": -1, "filename": "Glances-2.8.8-py3.5.egg", "has_sig": false, "md5_digest": "f8abd00df8c042f9967ba1f527718bb6", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1021868, "upload_time": "2017-03-12T17:22:09", "url": "https://files.pythonhosted.org/packages/57/50/609e4f364b07fbb91b27d3ddb03df27d0d298ec2fdbc2cd9e28f2259c19d/Glances-2.8.8-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "34c7bc06af759ff02143ac4d35d1b959", "sha256": "dd1cef5da6643bd6d6774efc7db4fa8457e9dc05710c096d91414c86aa91de40" }, "downloads": -1, "filename": "Glances-2.8.8-py3.6.egg", "has_sig": false, "md5_digest": "34c7bc06af759ff02143ac4d35d1b959", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1016117, "upload_time": "2017-03-12T17:22:40", "url": "https://files.pythonhosted.org/packages/8f/f4/0f580c233e843cb20059b6b8a0b35b9eb26e8a1af9ff4fa633d41559bde5/Glances-2.8.8-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "cbc9dabeb82c8f152a8a42bb45ba0215", "sha256": "094c1b430ef6bac858b60de8934b0155b54b4a229346370d2423bdac2267a1ca" }, "downloads": -1, "filename": "Glances-2.8.8.tar.gz", "has_sig": false, "md5_digest": "cbc9dabeb82c8f152a8a42bb45ba0215", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5533695, "upload_time": "2017-03-12T17:20:48", "url": "https://files.pythonhosted.org/packages/30/3b/62b921bcbb505e02e6c19cbc650778c2d656987aeb746a733aebbdc59cf3/Glances-2.8.8.tar.gz" } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "04856fccf59a9b5710e850f29fe9b99c", "sha256": "a59e4cce1006c692bdf7c80d930c9bce7adf1c9975c34ed6037b25093aeb695f" }, "downloads": -1, "filename": "Glances-2.9.0-py2.7.egg", "has_sig": false, "md5_digest": "04856fccf59a9b5710e850f29fe9b99c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1020410, "upload_time": "2017-03-27T15:22:34", "url": "https://files.pythonhosted.org/packages/ed/a8/99392179494956e8b84e4129ddb510704ba41dd79752ba55602f2b8976ec/Glances-2.9.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7fe201c7b19303308f3d95910f064f79", "sha256": "874c304452ca6d3ae418f34bc0e89010e065d7d79a2a5f9ff6dace2a41172029" }, "downloads": -1, "filename": "Glances-2.9.0-py3.3.egg", "has_sig": false, "md5_digest": "7fe201c7b19303308f3d95910f064f79", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1037718, "upload_time": "2017-03-27T15:22:30", "url": "https://files.pythonhosted.org/packages/1a/07/e0767a579c2845bf2de575b4f98a811535244e7b5ea006262d6497ffbdd3/Glances-2.9.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "f3b8223eed321a2c7a14bff1d30e4cda", "sha256": "00309eea568d19ba8d2b6f7470b6f9932a04ccc97d281b1278eb997bde8dfead" }, "downloads": -1, "filename": "Glances-2.9.0-py3.4.egg", "has_sig": false, "md5_digest": "f3b8223eed321a2c7a14bff1d30e4cda", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1030607, "upload_time": "2017-03-27T15:22:53", "url": "https://files.pythonhosted.org/packages/fb/b8/accaded336ddf395b2db5de62c377b1e777e6aa8263463171611687f79d3/Glances-2.9.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "f8aae5da76003a217a479992da772bb8", "sha256": "0d2e22faedbeddb12ea10bd4ed14309b3e62ae219caa6fa498bc7b28702daab8" }, "downloads": -1, "filename": "Glances-2.9.0-py3.5.egg", "has_sig": false, "md5_digest": "f8aae5da76003a217a479992da772bb8", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1029459, "upload_time": "2017-03-27T15:23:45", "url": "https://files.pythonhosted.org/packages/fa/52/df8fd0ec9801071153189d83091c3ea72d5616d514ccba689f000be1ca6d/Glances-2.9.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "8aaed064bc3b316224e90a5721ca53a9", "sha256": "d0c6a835d633be0f4a855a1c4f359d07a0e42f096237aa1da3c4ddcdcff953dd" }, "downloads": -1, "filename": "Glances-2.9.0-py3.6.egg", "has_sig": false, "md5_digest": "8aaed064bc3b316224e90a5721ca53a9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1023684, "upload_time": "2017-03-27T15:24:34", "url": "https://files.pythonhosted.org/packages/7a/2e/2a4aee405e88286c1c5d78810649888eca346941c65c08ef9a50e04f52be/Glances-2.9.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c8e8d66e5f940a4fa1cc8085e7c22d83", "sha256": "12c60df26a9688edfe2e87ae9f55c17436fb9a95fe7db4a90ffc369492733abc" }, "downloads": -1, "filename": "Glances-2.9.0.tar.gz", "has_sig": false, "md5_digest": "c8e8d66e5f940a4fa1cc8085e7c22d83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5644819, "upload_time": "2017-03-27T15:22:34", "url": "https://files.pythonhosted.org/packages/fc/54/ab58b56122fd55cf89fb703773219b38fbddd6f2f750e4c3d6b114cac143/Glances-2.9.0.tar.gz" } ], "2.9.1": [ { "comment_text": "", "digests": { "md5": "28fd1c1a3231aefdc05dce250e2c2094", "sha256": "aee8a34d9ace2f6b207b86dc8b59bba46c8bbba916795d9eb09a35f06a62b52b" }, "downloads": -1, "filename": "Glances-2.9.1-py2.7.egg", "has_sig": false, "md5_digest": "28fd1c1a3231aefdc05dce250e2c2094", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1020629, "upload_time": "2017-03-29T10:06:54", "url": "https://files.pythonhosted.org/packages/65/16/a87f1e01c2041e03026aff1d7b48ea7af60b27cd460e079715a50dc3f034/Glances-2.9.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "12c4988ab3ddaf35a05f291874086860", "sha256": "d83bc20d322219602edb446af173c21445bf73e90b83b64ac2ec99455853f16b" }, "downloads": -1, "filename": "Glances-2.9.1-py3.3.egg", "has_sig": false, "md5_digest": "12c4988ab3ddaf35a05f291874086860", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 1037934, "upload_time": "2017-03-29T10:06:54", "url": "https://files.pythonhosted.org/packages/93/a6/b88fdff5c8af076f92da174bf7407bb47f73358f7016f076ff8d5d32b28d/Glances-2.9.1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "45ebdfef2722a5061e86c812a2f52844", "sha256": "1d73601c28ab5628bf7a42c10079ca6403e0e1a75777468579ff3f12ae2abbc5" }, "downloads": -1, "filename": "Glances-2.9.1-py3.4.egg", "has_sig": false, "md5_digest": "45ebdfef2722a5061e86c812a2f52844", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1030865, "upload_time": "2017-03-29T10:06:58", "url": "https://files.pythonhosted.org/packages/47/a7/06f74524a870ce4e14e3e4f56ff0c51dda2ac5fd136cc1d2ac652fdddee1/Glances-2.9.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "52c858d31ac7c774b8517d4d89482372", "sha256": "f86ae5d9f62b961ced15a4b67bdc12a0904a6deaec9faff178b549571917fbdc" }, "downloads": -1, "filename": "Glances-2.9.1-py3.5.egg", "has_sig": false, "md5_digest": "52c858d31ac7c774b8517d4d89482372", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 1029719, "upload_time": "2017-03-29T10:07:04", "url": "https://files.pythonhosted.org/packages/3b/e2/c34877d77bcdc63508870d813cd4e62b9a683eedf0cde0c3a51cd93d8a81/Glances-2.9.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "33330b05f53d11549df2e154851eeec5", "sha256": "c2d6cf1957b6725047936012270ab547a8784c61652a696277a942dce8798eb6" }, "downloads": -1, "filename": "Glances-2.9.1-py3.6.egg", "has_sig": false, "md5_digest": "33330b05f53d11549df2e154851eeec5", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1023788, "upload_time": "2017-03-29T10:07:32", "url": "https://files.pythonhosted.org/packages/2f/c7/9d645dcdd53c8f49d5a266b4414a27427cef2d9db1c30fd324ff665d9807/Glances-2.9.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "b34f70d3626def4e31bd1198e188744b", "sha256": "03ce730566e183372ee73e45729485396bb62d1c0f108a00f27feff43206fc52" }, "downloads": -1, "filename": "Glances-2.9.1.tar.gz", "has_sig": false, "md5_digest": "b34f70d3626def4e31bd1198e188744b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5644812, "upload_time": "2017-03-29T10:06:57", "url": "https://files.pythonhosted.org/packages/65/ed/b8b1f755b8c5c34759e91343bf0b175524bbb978a86a18b65cd1cc0d36a9/Glances-2.9.1.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "926d783e1fc54b98449c2f5e67e42e3d", "sha256": "e53784a3d6d7776c150d9d655a04ecac78e42e03f7cc0dc08d637494bd447779" }, "downloads": -1, "filename": "Glances-3.0.tar.gz", "has_sig": false, "md5_digest": "926d783e1fc54b98449c2f5e67e42e3d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6247724, "upload_time": "2018-09-01T10:54:33", "url": "https://files.pythonhosted.org/packages/6b/3f/5a87983df91d73c6601d70ab4b3c5fdfca597cc77cfacd025859dd335622/Glances-3.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "646100d8221a0df410429be28d86871e", "sha256": "d1badf63552d79ad49dafa2d9aee296aca9a324cdb416797aff9dc6f6ebfd16b" }, "downloads": -1, "filename": "Glances-3.0.1.tar.gz", "has_sig": false, "md5_digest": "646100d8221a0df410429be28d86871e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6247919, "upload_time": "2018-09-04T21:19:33", "url": "https://files.pythonhosted.org/packages/b4/89/643c2757ddb8574adcee8c39c73c4f10af947dc025b2740958e6a4f4d090/Glances-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "7ec5b71bf3e94937f65a1543da3fa62c", "sha256": "5eca4da689e4e2f98a637b38c9b72549998ac9f15cedbfb16626d8709df6dd25" }, "downloads": -1, "filename": "Glances-3.0.2.tar.gz", "has_sig": false, "md5_digest": "7ec5b71bf3e94937f65a1543da3fa62c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6248035, "upload_time": "2018-09-29T08:38:07", "url": "https://files.pythonhosted.org/packages/59/32/3bc36a9198998a4d73d5b19b02e0a59cde96fa1d8dccce05015a9b1929b7/Glances-3.0.2.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "b80933fae420f959dd1912c1ae5c35de", "sha256": "904e3dbbebe261dd98d02f4f0a340e4934b12192e8b303b78473f617c0fcd6ca" }, "downloads": -1, "filename": "Glances-3.1.0.tar.gz", "has_sig": false, "md5_digest": "b80933fae420f959dd1912c1ae5c35de", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6668462, "upload_time": "2019-01-19T15:47:59", "url": "https://files.pythonhosted.org/packages/32/34/72f9202ad5b7ada314507a50b9ab1fb604d2f468b138679e0a4fedeb91fa/Glances-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "a5cb4f6c30de633866a4b62f7e8b2eb1", "sha256": "2856a8519d08051ab65d118208226e60971453f6365712c3f75347acff7b411e" }, "downloads": -1, "filename": "Glances-3.1.1.tar.gz", "has_sig": false, "md5_digest": "a5cb4f6c30de633866a4b62f7e8b2eb1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6715639, "upload_time": "2019-07-17T15:55:42", "url": "https://files.pythonhosted.org/packages/c6/6c/553b7df8e0673ef849e3ac49590f5be162efd8c5e631dbaf142b21366e55/Glances-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "a8d80338eab31f290e27e2d2151b397e", "sha256": "733a30ee580d062759640a3ce9d7f5798b80c24e6dbf8f96269227bed7256894" }, "downloads": -1, "filename": "Glances-3.1.2.tar.gz", "has_sig": false, "md5_digest": "a8d80338eab31f290e27e2d2151b397e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6713025, "upload_time": "2019-08-27T14:39:31", "url": "https://files.pythonhosted.org/packages/99/db/46c306997e4fc220f967716124fe6200ae88f0a82b9ce386886cb720d146/Glances-3.1.2.tar.gz" } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "6091cfd66c2476a1888fc1eb1879d669", "sha256": "dc426f90e52a15004b8205ab4775a8002051ba36166097585caf62aa627e7f91" }, "downloads": -1, "filename": "Glances-3.1.3.tar.gz", "has_sig": false, "md5_digest": "6091cfd66c2476a1888fc1eb1879d669", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44102798, "upload_time": "2019-10-13T08:35:25", "url": "https://files.pythonhosted.org/packages/d4/6f/5f5818496d69915f0e576f1dd4621aac7837118b67df2927849b092b38d9/Glances-3.1.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6091cfd66c2476a1888fc1eb1879d669", "sha256": "dc426f90e52a15004b8205ab4775a8002051ba36166097585caf62aa627e7f91" }, "downloads": -1, "filename": "Glances-3.1.3.tar.gz", "has_sig": false, "md5_digest": "6091cfd66c2476a1888fc1eb1879d669", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44102798, "upload_time": "2019-10-13T08:35:25", "url": "https://files.pythonhosted.org/packages/d4/6f/5f5818496d69915f0e576f1dd4621aac7837118b67df2927849b092b38d9/Glances-3.1.3.tar.gz" } ] }