{ "info": { "author": "Fr\u00e9d\u00e9ric MOHIER", "author_email": "frederic.mohier@alignak.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Natural Language :: English", "Programming Language :: Python", "Topic :: System :: Monitoring", "Topic :: System :: Systems Administration" ], "description": "Alignak checks package for Unix/Linux SNMP checked hosts/services\n=================================================================\n\n*Checks pack for monitoring Unix/Linux or Windows hosts with SNMP active checks*\n\n\n.. image:: https://badge.fury.io/py/alignak_checks_snmp.svg\n :target: https://badge.fury.io/py/alignak-checks-snmp\n :alt: Most recent PyPi version\n\n.. image:: https://img.shields.io/badge/IRC-%23alignak-1e72ff.svg?style=flat\n :target: http://webchat.freenode.net/?channels=%23alignak\n :alt: Join the chat #alignak on freenode.net\n\n.. image:: https://img.shields.io/badge/License-AGPL%20v3-blue.svg\n :target: http://www.gnu.org/licenses/agpl-3.0\n :alt: License AGPL v3\n\n\n**Note** that the Windows part for this pack is not yet available.\n\n**If you are interested in such a checks pack and if you are monitoring some Windows hosts with SNMP, please contact us (IRC or open an issue in this project)**\n\n\nInstallation\n------------\n\nThe installation of this checks pack will copy some configuration files in the Alignak default configuration directory (eg. */usr/local/share/alignak/etc*).\nThe copied files are located in the default sub-directory used for the packs (eg. *arbiter/packs* for the Nagios legacy cfg files or *arbiter/backend-json* for the backend importable files).\n\nFrom Alignak packages repositories\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nMore information in the online Alignak documentation. Here is only an abstract...\n\nDebian::\n\n # Alignak DEB stable packages\n sudo echo deb https://dl.bintray.com/alignak/alignak-deb-stable xenial main | sudo tee -a /etc/apt/sources.list.d/alignak.list\n sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv D401AB61\n\n sudo apt-get update\n sudo apt install python-alignak-checks-snmp\n\nCentOS::\n\n sudo vi /etc/yum.repos.d/alignak-stable.repo:\n [Alignak-rpm-stable]\n name=Alignak RPM stable packages\n baseurl=https://dl.bintray.com/alignak/alignak-rpm-stable\n gpgcheck=0\n repo_gpgcheck=0\n enabled=1\n\n sudo yum repolist\n\n sudo yum install python-alignak-checks-snmp\n\n.. note:: for Python 3 version, replace ``python`` with ``python3`` in the packages name.\n\nFrom PyPI\n~~~~~~~~~\nTo install the package from PyPI::\n\n # Python 2\n sudo pip install alignak-checks-snmp\n\n # Python 3\n sudo pip3 install alignak-checks-snmp\n\n\nFrom source files\n~~~~~~~~~~~~~~~~~\nTo install the package from the source files::\n\n git clone https://github.com/Alignak-monitoring-contrib/alignak-checks-snmp\n cd alignak-checks-snmp\n sudo pip install .\n\n**Note:** *using `sudo python setup.py install` will not correctly manage the package configuration files! The recommended way is really to use `pip`;)*\n\nDocumentation\n-------------\n\nThis checks pack is using the some PERL plugins that are shipped with the checks pack, but some PERL dependencies are necessary.\n\n\nInstall PERL dependencies for PERL plugins\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nOn some Linux distros, you can::\n\n sudo apt-get install libsnmp-perl libnet-snmp-perl\n\nOr you can use the PERL *cpan* utility::\n\n cpan install Net::SNMP\n\n\nConfiguration\n~~~~~~~~~~~~~\nEdit the */usr/local/share/alignak/etc/arbiter/packs/snmp/resources.cfg* file and configure the SNMP community.::\n\n #-- Default SNMP community\n $SNMPCOMMUNITYREAD$=public\n\n\nPrepare host\n~~~~~~~~~~~~\nSome operations are necessary on the monitored hosts if SNMP remote access is not yet activated.\n ::\n\n # Install local SNMP agent\n su -\n apt-get update\n apt-get install snmpd\n\n # Allow SNMP get - this configuration is intended for tests puuposes\n # You should set up a more secure configuration and not allow everyone to see everything :)\n vi /etc/snmp/snmpd.conf\n =>\n # Listen for connections from the local system only\n #agentAddress udp:127.0.0.1:161\n # Listen for connections on all interfaces (both IPv4 *and* IPv6)\n agentAddress udp:161,udp6:[::1]:161\n =>\n # rocommunity public default -V systemonly\n rocommunity public\n\n # Restart SNMP agent\n sudo systemctl restart snmpd.service\n\nTest remote access with the plugins files::\n\n $ /usr/local/var/libexec/alignak/check_snmp_mem.pl -H 127.0.0.1 -C public -w 80,80 -c 90,95\n Ram : 71%, Swap : 58% : ; OK\n\n\nAlignak configuration\n~~~~~~~~~~~~~~~~~~~~~\n\nTo define the SNMP community to be used per default, edit the *resources.cfg* file and change the default value.\n\n ::\n\n $SNMPCOMMUNITYREAD$=public\n\n\nYou simply have to tag the concerned hosts with the template `linux-snmp`.\n\n ::\n\n define host{\n use linux-snmp\n host_name host_snmp\n address 127.0.0.1\n }\n\n\nThe main `linux-snmp` template declares macros used to configure the launched checks. The default values of these macros listed hereunder can be overriden in each host configuration.\n\n ::\n\n _SNMPCOMMUNITY $SNMPCOMMUNITYREAD$\n _SNMP_MSG_MAX_SIZE 65535\n\n _LOAD_WARN 2,2,2\n _LOAD_CRIT 3,3,3\n _STORAGE_WARN 90\n _STORAGE_CRIT 95\n _CPU_WARN 80\n _CPU_CRIT 90\n _MEMORY_WARN 80,80\n _MEMORY_CRIT 95,95\n _NET_IFACES eth\\d+|em\\d+\n _NET_WARN 90,90,0,0,0,0\n _NET_CRIT 0,0,0,0,0,0\n\n\nTo set a specific value for an host, declare the same macro in the host definition file.\n\n ::\n\n define host{\n use linux-snmp\n host_name host_snmp\n address 127.0.0.1\n\n # Specific values for this host\n # Change warning and critical alerts level for memory\n # Same for CPU, ALL_CPU, DISK, LOAD, NET, ...\n _LOAD_WARN 3,3,3\n _LOAD_CRIT 5,5,5\n }\n\n\n\n\nBugs, issues and contributing\n-----------------------------\n\nContributions to this project are welcome and encouraged ... `issues in the project repository `_ are the common way to raise an information.\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/Alignak-monitoring-contrib/alignak-checks-snmp", "keywords": "a,l,i,g,n,a,k, ,m,o,n,i,t,o,r,i,n,g, ,p,a,c,k, ,c,h,e,c,k,s, ,s,n,m,p", "license": "GNU Affero General Public License, version 3", "maintainer": "", "maintainer_email": "", "name": "alignak_checks_snmp", "package_url": "https://pypi.org/project/alignak_checks_snmp/", "platform": "", "project_url": "https://pypi.org/project/alignak_checks_snmp/", "project_urls": { "Homepage": "https://github.com/Alignak-monitoring-contrib/alignak-checks-snmp" }, "release_url": "https://pypi.org/project/alignak_checks_snmp/2.0.2/", "requires_dist": null, "requires_python": "", "summary": "Alignak checks pack for Linux SNMP monitored hosts", "version": "2.0.2" }, "last_serial": 4195105, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "645c240c1f22405e05855918dee518f4", "sha256": "90922f8d3ebd1dffa04732168b97cdbda732a909bf57e7e16fe0de23eb036e78" }, "downloads": -1, "filename": "alignak_checks_snmp-0.1.0.tar.gz", "has_sig": false, "md5_digest": "645c240c1f22405e05855918dee518f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18940, "upload_time": "2015-11-23T04:42:40", "url": "https://files.pythonhosted.org/packages/4b/5d/0ec1cfdefb8d7dcb6c89f4ef0a3eb5f0d7bd28645ffedd6fca5820318516/alignak_checks_snmp-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "7b6725a593467b7fbe758234284a2113", "sha256": "7255229dea0b80bd680983fd48feb57d0e7caa00a828925992527f9f08692f96" }, "downloads": -1, "filename": "alignak_checks_snmp-0.2.0.tar.gz", "has_sig": false, "md5_digest": "7b6725a593467b7fbe758234284a2113", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109863, "upload_time": "2016-09-19T20:10:33", "url": "https://files.pythonhosted.org/packages/88/66/6716142353415430a4e476f60762c8735addcbf60367789afdc80abaf092/alignak_checks_snmp-0.2.0.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "077a15ff2a583834f05669149e49dddc", "sha256": "bd57fd8c4c06ccea1864b4ba1a29d0ddf2a93f730ae3a41ef275e5e08e52a5e8" }, "downloads": -1, "filename": "alignak_checks_snmp-0.2.2.tar.gz", "has_sig": false, "md5_digest": "077a15ff2a583834f05669149e49dddc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85468, "upload_time": "2016-10-03T08:10:46", "url": "https://files.pythonhosted.org/packages/33/0d/15606de01ea81bd41f508dbaa5b58aa48428d2111f09a82fca6ed4e124d6/alignak_checks_snmp-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "d79e8eb106d51405a38954e078288a84", "sha256": "9ada47e959bcfc1511fec147a6de39323ae75d77da851c73f68723c505c2d678" }, "downloads": -1, "filename": "alignak_checks_snmp-0.2.3.tar.gz", "has_sig": false, "md5_digest": "d79e8eb106d51405a38954e078288a84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85788, "upload_time": "2016-10-03T17:20:39", "url": "https://files.pythonhosted.org/packages/60/fa/6e6cbc16909640ac7e5156743df5ac453ec79ef1cd2984c1c13db5e141aa/alignak_checks_snmp-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "9ea6f1220d79e1d4c7548b5a23d585ce", "sha256": "7b5858c27803c8b162812daa539b778c49658b66bc3612bde0e70650e6bdb9ed" }, "downloads": -1, "filename": "alignak_checks_snmp-0.2.4.tar.gz", "has_sig": false, "md5_digest": "9ea6f1220d79e1d4c7548b5a23d585ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85779, "upload_time": "2016-10-03T17:21:33", "url": "https://files.pythonhosted.org/packages/b8/64/ae010619bab10e0cfe71825064918ea1ce896d50aba23a50d646d735b340/alignak_checks_snmp-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "7415cf4337a194db95f102bd207fa8f2", "sha256": "00a9b92f6eec7086fac9d8bee2b963eb7adec022185ae85f011c54bc96f8fd8c" }, "downloads": -1, "filename": "alignak_checks_snmp-0.2.5.tar.gz", "has_sig": false, "md5_digest": "7415cf4337a194db95f102bd207fa8f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92813, "upload_time": "2016-10-03T18:41:00", "url": "https://files.pythonhosted.org/packages/b3/8d/3c30dac70cdf36d9c2f530bf6de196c7a5f3e43bb871c16fe6a1eb238453/alignak_checks_snmp-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "f92a79395c5baa867269049dfff9612d", "sha256": "1f4cb619a0df1571301a1b2e0ffd1356d41d14d240c9568b56221f2e20ccd647" }, "downloads": -1, "filename": "alignak_checks_snmp-0.2.6.tar.gz", "has_sig": false, "md5_digest": "f92a79395c5baa867269049dfff9612d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92913, "upload_time": "2016-12-01T12:02:42", "url": "https://files.pythonhosted.org/packages/69/2d/02dfe2deca8fe5354a22d5fde42fa943f1ee3b42bbb232442eb1e355cbf8/alignak_checks_snmp-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "81b3ba375afc86dc641eedaf3dd1c054", "sha256": "4570f52d1bee5893b97b8d67dc8897014b3875822cab9ecf38614fa253e27c59" }, "downloads": -1, "filename": "alignak_checks_snmp-0.2.7.tar.gz", "has_sig": false, "md5_digest": "81b3ba375afc86dc641eedaf3dd1c054", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90622, "upload_time": "2017-01-05T04:52:19", "url": "https://files.pythonhosted.org/packages/28/a1/587823c7c0fadd352854e4ed2446f246edda223cf90d60de4ed22bf97282/alignak_checks_snmp-0.2.7.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "b596b34098d797bb90a770ac197bcbbc", "sha256": "1fd4ff620bf46f491d4cd3fea3032eaf5525b65774e1525980b16ca41dc8055e" }, "downloads": -1, "filename": "alignak_checks_snmp-0.3.0.tar.gz", "has_sig": false, "md5_digest": "b596b34098d797bb90a770ac197bcbbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16776, "upload_time": "2017-01-06T04:26:08", "url": "https://files.pythonhosted.org/packages/8a/a2/4c76d63deb3abee0c7cf651e95ff7352bdb712c9b85577e8d41032104dad/alignak_checks_snmp-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "1b7c56346c2dcc95a400fd52169c3c33", "sha256": "08339863beed96aa9bdd95f10a102c3b577acb615ea31ece014ad841f1561804" }, "downloads": -1, "filename": "alignak_checks_snmp-0.3.1.tar.gz", "has_sig": false, "md5_digest": "1b7c56346c2dcc95a400fd52169c3c33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16795, "upload_time": "2017-01-06T09:26:09", "url": "https://files.pythonhosted.org/packages/8d/3d/4c8f6444465ef82cf3e374d585f43237ebf9ae44aa5e192804e5bb8c3b24/alignak_checks_snmp-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "69e0c561e787ac73cd61c4f062879982", "sha256": "45e0ec16de5cc585ded73b84839033e5099b2f62841551049e53a9f09843126a" }, "downloads": -1, "filename": "alignak_checks_snmp-0.3.2.tar.gz", "has_sig": false, "md5_digest": "69e0c561e787ac73cd61c4f062879982", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92962, "upload_time": "2017-01-06T09:28:44", "url": "https://files.pythonhosted.org/packages/78/d7/7d7267e1e03842d9fe36274f1bdcce855b0bf4191fecda2738ebc87986fc/alignak_checks_snmp-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "fcbee162648ae36b81f2e21e456c8578", "sha256": "971e94cdbf2d3573107fe00e7644a525a3cd0234fd58dded0b71e0fe8ba7772b" }, "downloads": -1, "filename": "alignak_checks_snmp-0.3.3.tar.gz", "has_sig": false, "md5_digest": "fcbee162648ae36b81f2e21e456c8578", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92971, "upload_time": "2017-01-06T09:32:49", "url": "https://files.pythonhosted.org/packages/62/e0/0ab00453449f7d17caf0754108f80f93149e14af174e67eccae97d7f36de/alignak_checks_snmp-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "4b8a33d50665bb2c4eee5805491305fc", "sha256": "927ffa3ed95e9c1801dbfd119954c67896631a7153fd58e4d08d9b17a9f976b4" }, "downloads": -1, "filename": "alignak_checks_snmp-0.3.4.tar.gz", "has_sig": false, "md5_digest": "4b8a33d50665bb2c4eee5805491305fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92974, "upload_time": "2017-01-06T09:43:07", "url": "https://files.pythonhosted.org/packages/87/0a/af05b2c2971a67645ac0e3f1eb6f18f06586ea6478ff792dcf246bc9b153/alignak_checks_snmp-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "e5576332ec6859745dd2b738730c1a03", "sha256": "495a5cceb739614d7afd3f955781d2ad00949f6e51d83c8d362e78efd99f9538" }, "downloads": -1, "filename": "alignak_checks_snmp-0.3.5.tar.gz", "has_sig": false, "md5_digest": "e5576332ec6859745dd2b738730c1a03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93058, "upload_time": "2017-01-06T09:48:25", "url": "https://files.pythonhosted.org/packages/7e/5c/2c24086390dd76fa2dcb160a9f582080185272ec104c3599326dc04f8a3f/alignak_checks_snmp-0.3.5.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "6bbd95a3e377906f19cde263357b3dbe", "sha256": "86eb20594fae56066c4ea84ef2ef6362d097a300ccee9b001f207466c479a181" }, "downloads": -1, "filename": "alignak_checks_snmp-0.4.0.tar.gz", "has_sig": false, "md5_digest": "6bbd95a3e377906f19cde263357b3dbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95423, "upload_time": "2017-06-09T12:36:33", "url": "https://files.pythonhosted.org/packages/da/b4/e274e20d4c87ee323d4cce179ef178c3881c0d23a12a0c00453cfbf3e416/alignak_checks_snmp-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "8c05e7a69ecb3f34f1d686ee82a42932", "sha256": "75e43901db122a984f05ab0ff14b62854fa087ad0f55d262692d4f698499aee2" }, "downloads": -1, "filename": "alignak_checks_snmp-0.4.1.tar.gz", "has_sig": false, "md5_digest": "8c05e7a69ecb3f34f1d686ee82a42932", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95385, "upload_time": "2017-06-09T12:41:13", "url": "https://files.pythonhosted.org/packages/e1/c0/0bf043a2a86e82cf647b7d232a374b791c81038b35066a54cf608fa835c3/alignak_checks_snmp-0.4.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "0c4fec636a5ab951a78041669f2d00fa", "sha256": "fa0dd07a32924d42cb363d1602e842e70632f47fea4d1448b8ee8eb7aff4e5ef" }, "downloads": -1, "filename": "alignak_checks_snmp-1.0.0.tar.gz", "has_sig": false, "md5_digest": "0c4fec636a5ab951a78041669f2d00fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95374, "upload_time": "2017-09-12T07:25:58", "url": "https://files.pythonhosted.org/packages/70/0a/8d2a7120a6d04a0e40793f38f4879d9535621a76773906b129fad3fae883/alignak_checks_snmp-1.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "a050333ebc849565651b4224ec1c8e97", "sha256": "92a4a1050ac43ff602ce5296589c985a311924ddb7e3ab89b917b9a29fad2bb1" }, "downloads": -1, "filename": "alignak_checks_snmp-2.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "a050333ebc849565651b4224ec1c8e97", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 97297, "upload_time": "2018-08-22T05:09:26", "url": "https://files.pythonhosted.org/packages/f6/61/3b6ac9ab294fff481cda4369077564cce14415d8eef68d99f6779b30a510/alignak_checks_snmp-2.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b98331eb78dffda56ddc0bd6eb4ec5b", "sha256": "cd3436a1d14cf953f6d9a1f41c300dc043bbb783f69fb0d8b020daf5c283b94b" }, "downloads": -1, "filename": "alignak_checks_snmp-2.0.1.tar.gz", "has_sig": false, "md5_digest": "2b98331eb78dffda56ddc0bd6eb4ec5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99293, "upload_time": "2018-08-22T05:09:27", "url": "https://files.pythonhosted.org/packages/83/fc/72f10ab239ab8541a23ca012ed5d06e60205934a411e44397356ab07d0b8/alignak_checks_snmp-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "47172d1c433d0d49bd484233fec87c7d", "sha256": "05ee2189733f93f2e12cf85c34f13c8a5543493a977bcc37b7835660ad9ef6ee" }, "downloads": -1, "filename": "alignak_checks_snmp-2.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "47172d1c433d0d49bd484233fec87c7d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 97674, "upload_time": "2018-08-22T05:36:58", "url": "https://files.pythonhosted.org/packages/b1/ff/42b8e8872e02380c945b61aed71f4c93f2391a465ab43a11fed922af9b23/alignak_checks_snmp-2.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "825ffc9240b63bc4b193fa6c00405ac4", "sha256": "0be90d300a04e54fc0400e9e4322db80bacfbb7d6e6ea5ba6df3128d1dac31ae" }, "downloads": -1, "filename": "alignak_checks_snmp-2.0.2.tar.gz", "has_sig": false, "md5_digest": "825ffc9240b63bc4b193fa6c00405ac4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99607, "upload_time": "2018-08-22T05:36:59", "url": "https://files.pythonhosted.org/packages/ae/b1/d99407387677abf4da41bf27ff139591b56ebed4e2606741bcb6b368a145/alignak_checks_snmp-2.0.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "47172d1c433d0d49bd484233fec87c7d", "sha256": "05ee2189733f93f2e12cf85c34f13c8a5543493a977bcc37b7835660ad9ef6ee" }, "downloads": -1, "filename": "alignak_checks_snmp-2.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "47172d1c433d0d49bd484233fec87c7d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 97674, "upload_time": "2018-08-22T05:36:58", "url": "https://files.pythonhosted.org/packages/b1/ff/42b8e8872e02380c945b61aed71f4c93f2391a465ab43a11fed922af9b23/alignak_checks_snmp-2.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "825ffc9240b63bc4b193fa6c00405ac4", "sha256": "0be90d300a04e54fc0400e9e4322db80bacfbb7d6e6ea5ba6df3128d1dac31ae" }, "downloads": -1, "filename": "alignak_checks_snmp-2.0.2.tar.gz", "has_sig": false, "md5_digest": "825ffc9240b63bc4b193fa6c00405ac4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99607, "upload_time": "2018-08-22T05:36:59", "url": "https://files.pythonhosted.org/packages/ae/b1/d99407387677abf4da41bf27ff139591b56ebed4e2606741bcb6b368a145/alignak_checks_snmp-2.0.2.tar.gz" } ] }