{ "info": { "author": "Peter Pakos", "author_email": "peter.pakos@wandisco.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "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 :: Systems Administration :: Authentication/Directory :: LDAP" ], "description": "checkipaconsistency aka cipa\n============================\n\nFormerly known as ipa_check_consistency and check_ipa_consistency\n\nTool to check consistency across FreeIPA servers\n------------------------------------------------\n\nThe tool can be used as a standalone consistency checker as well as a\nNagios/Opsview plug-in (check `Nagios section\nbelow <#nagios-plug-in-mode>`__ for more info).\n\nThe script was originally written and then developed in BASH (until\nversion\n`v1.3.0 `__)\nand eventually ported to Python in v2.0.0.\n\nIt has been tested with multiple FreeIPA 4.2+ deployments across a range\nof operating systems.\n\nRequirements:\n\n- FreeIPA 4.2+\n- Python 2.7+/3.3+\n- Python modules listed in\n `requirements.txt `__\n\nIf you spot any problems or have any improvement ideas then feel free to\nopen an issue and I will be glad to look into it for you.\n\nInstallation\n------------\n\nA recommended way of installing the tool is pip install.\n\nOnce installed, a command line tool ``cipa`` should be available in your\nsystem's PATH.\n\n**WARNING: Never attempt pip install as root!**\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**If you do, pip will install new dependencies globally and override\nexisting packages with potentially incompatible versions. This is\nparticularly important when installing ``cipa`` on a machine running\nFreeIPA server.**\n\n**You should either install the package as an unprivileged user with\n``pip install --user`` or use a virtual environment.**\n\npip install\n~~~~~~~~~~~\n\nPlease note, in RHEL/CentOS systems you may need to install the\nfollowing packages:\n\n::\n\n $ sudo yum install python-devel openldap-devel\n\nThe tool is available in PyPI and can be installed using pip:\n\n::\n\n $ pip install --user checkipaconsistency\n $ cipa --help\n\nManual install\n~~~~~~~~~~~~~~\n\nRun the following command to install required Python modules:\n\n::\n\n $ git clone https://github.com/peterpakos/checkipaconsistency.git\n $ cd checkipaconsistency\n $ pip install --user -r requirements.txt\n $ ./cipa --help\n\nConfiguration\n-------------\n\nBy default, the tool reads its configuration from\n``~/.config/checkipaconsistency`` file (the location can be overridden\nby setting environment variable ``XDG_CONFIG_HOME``). If the config file\n(or directory) does not exist then it will be automatically created and\npopulated with sample config upon the next run. Alternatively, you can\nspecify all required options directly from the command line.\n\nHelp\n----\n\n::\n\n $ cipa --help\n usage: cipa [-H [HOSTS [HOSTS ...]]] [-d [DOMAIN]] [-D [BINDDN]] [-W [BINDPW]]\n [--help] [--version] [--debug] [--verbose] [--quiet]\n [-l [LOG_FILE]] [--no-header] [--no-border]\n [-n [{,all,users,susers,pusers,hosts,services,ugroups,hgroups,ngroups,hbac,sudo,zones,certs,conflicts,ghosts,bind,msdcs,replicas}]]\n [-w WARNING] [-c CRITICAL]\n\n Tool to check consistency across FreeIPA servers\n\n optional arguments:\n -H [HOSTS [HOSTS ...]], --hosts [HOSTS [HOSTS ...]]\n list of IPA servers\n -d [DOMAIN], --domain [DOMAIN]\n IPA domain\n -D [BINDDN], --binddn [BINDDN]\n Bind DN (default: cn=Directory Manager)\n -W [BINDPW], --bindpw [BINDPW]\n Bind password\n --help show this help message and exit\n --version show program's version number and exit\n --debug debugging mode\n --verbose verbose mode\n --quiet do not log to console\n -l [LOG_FILE], --log-file [LOG_FILE]\n log to file (./cipa.log by default)\n --no-header disable table header\n --no-border disable table border\n -n [{,all,users,susers,pusers,hosts,services,ugroups,hgroups,ngroups,hbac,sudo,zones,certs,conflicts,ghosts,bind,msdcs,replicas}]\n Nagios plugin mode\n -w WARNING, --warning WARNING\n number of failed checks before warning (default: 1)\n -c CRITICAL, --critical CRITICAL\n\nExample\n-------\n\n::\n\n $ cipa -d ipa.example.com -W ********\n +--------------------+----------+----------+----------+-----------+----------+----------+-------+\n | FreeIPA servers: | ipa01 | ipa02 | ipa03 | ipa04 | ipa05 | ipa06 | STATE |\n +--------------------+----------+----------+----------+-----------+----------+----------+-------+\n | Active Users | 1199 | 1199 | 1199 | 1199 | 1199 | 1199 | OK |\n | Stage Users | 0 | 0 | 0 | 0 | 0 | 0 | OK |\n | Preserved Users | 0 | 0 | 0 | 0 | 0 | 0 | OK |\n | Hosts | 357 | 357 | 357 | 357 | 357 | 357 | OK |\n | Services | 49 | 49 | 49 | 49 | 49 | 49 | OK |\n | User Groups | 55 | 55 | 55 | 55 | 55 | 55 | OK |\n | Host Groups | 29 | 29 | 29 | 29 | 29 | 29 | OK |\n | Netgroups | 11 | 11 | 11 | 11 | 11 | 11 | OK |\n | HBAC Rules | 3 | 3 | 3 | 3 | 3 | 3 | OK |\n | SUDO Rules | 2 | 2 | 2 | 2 | 2 | 2 | OK |\n | DNS Zones | 114 | 114 | 114 | 114 | 114 | 114 | OK |\n | Certificates | 0 | 0 | 0 | 0 | 0 | 0 | OK |\n | LDAP Conflicts | 0 | 0 | 0 | 0 | 0 | 0 | OK |\n | Ghost Replicas | 0 | 0 | 0 | 0 | 0 | 0 | OK |\n | Anonymous BIND | ON | ON | ON | ON | ON | ON | OK |\n | Microsoft ADTrust | False | False | False | False | False | False | OK |\n | Replication Status | ipa03 0 | ipa03 0 | ipa04 0 | ipa03 0 | ipa03 0 | ipa04 0 | OK |\n | | ipa04 0 | ipa04 0 | ipa05 0 | ipa01 0 | ipa01 0 | | |\n | | ipa05 0 | ipa05 0 | ipa01 0 | ipa02 0 | ipa02 0 | | |\n | | ipa02 0 | ipa01 0 | ipa02 0 | ipa06 0 | | | |\n +--------------------+----------+----------+----------+-----------+----------+----------+-------+\n\nDebug mode\n----------\n\nIf you experience any problems with the tool, try running it in debug\nmode:\n\n::\n\n $ cipa --debug\n 2017-12-22 20:05:04,494 [main] DEBUG Namespace(binddn=None, bindpw=None, critical=2, debug=True, disable_border=False, disable_header=False, domain=None, hosts=None, log_file=None, nagios_check=None, quiet=False, warning=1)\n 2017-12-22 20:05:04,494 [main] DEBUG Initialising...\n 2017-12-22 20:05:04,494 [main] DEBUG Config file not found at /Users/peter/.config/checkipaconsistency\n 2017-12-22 20:05:04,494 [main] INFO Initial config saved to /Users/peter/.config/checkipaconsistency - PLEASE EDIT IT!\n 2017-12-22 20:05:04,495 [main] CRITICAL IPA domain not set\n\nFor more verbosity use ``--debug --verbose`` arguments.\n\nNagios plug-in mode\n-------------------\n\nThe tool can be easily transformed into a Nagios/Opsview check:\n\n::\n\n $ pip install checkipaconsistency\n $ su - nagios\n $ vim ~/.config/checkipaconsistency\n $ ln -s `which cipa` /usr/local/nagios/libexec/check_ipa_consistency\n\nPerform all checks using default warning/critical thresholds:\n\n::\n\n $ /usr/local/nagios/libexec/check_ipa_consistency -n all\n OK - 15/15 checks passed\n\nPerform specific check with custom alerting thresholds:\n\n::\n\n $ /usr/local/nagios/libexec/check_ipa_consistency -n users -w 2 -c3\n OK - Active Users\n\nLDAP Conflicts\n~~~~~~~~~~~~~~\n\nNormally conflicting changes between replicas are resolved automatically\n(the most recent change takes precedence). However, there are cases\nwhere manual intervention is required. If you see LDAP conflicts in the\noutput of this script, you need to find the conflicting entries and\ndecide which of them should be preserved/deleted.\n\nMore information on solving common replication conflicts can be found\n`here `__.\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/peterpakos/checkipaconsistency", "keywords": "freeipa ipa ldap consistency cipa", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "checkipaconsistency", "package_url": "https://pypi.org/project/checkipaconsistency/", "platform": "", "project_url": "https://pypi.org/project/checkipaconsistency/", "project_urls": { "Homepage": "https://github.com/peterpakos/checkipaconsistency" }, "release_url": "https://pypi.org/project/checkipaconsistency/2.7.10/", "requires_dist": [ "pplogger", "python-ldap", "prettytable", "dnspython" ], "requires_python": "", "summary": "Tool to check consistency across FreeIPA servers", "version": "2.7.10" }, "last_serial": 5317329, "releases": { "2.6.1": [ { "comment_text": "", "digests": { "md5": "81695abfbffa956bb05e04d9a6276b75", "sha256": "51c707ad2342471074c582273bc375f9721380a7a072bd143d0a855e797af038" }, "downloads": -1, "filename": "checkipaconsistency-2.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "81695abfbffa956bb05e04d9a6276b75", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16895, "upload_time": "2017-12-22T20:13:27", "url": "https://files.pythonhosted.org/packages/4d/06/d1bbf4f721ddad8f733675106ac476af51a1409ad8052497c57b3b598c0f/checkipaconsistency-2.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0beed488d4d41bdcff4d9154ebf354d0", "sha256": "284d8a7c93dfaa22b3cc5be0449814da919d65077c8c1a4c37edceae0a75b45d" }, "downloads": -1, "filename": "checkipaconsistency-2.6.1.tar.gz", "has_sig": false, "md5_digest": "0beed488d4d41bdcff4d9154ebf354d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11994, "upload_time": "2017-12-22T20:13:29", "url": "https://files.pythonhosted.org/packages/75/e5/1fd1612b2715cb535a1caaaa226a2cf79d1e46b9e62e93aa6fc940f07237/checkipaconsistency-2.6.1.tar.gz" } ], "2.6.2": [ { "comment_text": "", "digests": { "md5": "3f6609fcf3d72790f223f347502e9924", "sha256": "127145b37dc81455aca92a07714018945987ed4491c8900c2c671f40f2febd43" }, "downloads": -1, "filename": "checkipaconsistency-2.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f6609fcf3d72790f223f347502e9924", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16744, "upload_time": "2017-12-22T21:01:40", "url": "https://files.pythonhosted.org/packages/a5/9a/d0e6aae8558ae9a861198c65788f6e5b19d3c2ed11cb26cbccf65632bbe6/checkipaconsistency-2.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7cb242e3828ebf42bf71b37f9075de7d", "sha256": "ede6c21d8901b1837bdf25c00e5befa2081e3b4e976ff9d90e8091e04469d06c" }, "downloads": -1, "filename": "checkipaconsistency-2.6.2.tar.gz", "has_sig": false, "md5_digest": "7cb242e3828ebf42bf71b37f9075de7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11809, "upload_time": "2017-12-22T21:01:43", "url": "https://files.pythonhosted.org/packages/0c/ce/04e52a6299c3fbda37191e700642727cd38e827d6132bf87a209ea3b1694/checkipaconsistency-2.6.2.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "7aa63dd4b0474ebea1bed2d86b366413", "sha256": "aef37906360e633008d20ceff15af5be1ee980e14413f147b12a1d1d027bee97" }, "downloads": -1, "filename": "checkipaconsistency-2.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7aa63dd4b0474ebea1bed2d86b366413", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17550, "upload_time": "2017-12-28T20:59:16", "url": "https://files.pythonhosted.org/packages/40/18/07bc4a2b3ba4bc03af0553cd1889c87286eae395ea76ae634046ea6268ef/checkipaconsistency-2.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd19ddac7ec8b7220fd3da53bd0349cf", "sha256": "15b5e7e1d4eca258fef0dce8e449185652c718b207797883a7bede549a5bddeb" }, "downloads": -1, "filename": "checkipaconsistency-2.7.0.tar.gz", "has_sig": false, "md5_digest": "dd19ddac7ec8b7220fd3da53bd0349cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12752, "upload_time": "2017-12-28T20:59:19", "url": "https://files.pythonhosted.org/packages/05/c4/383bc834670ea8e80f4db738a9fab12fbd6d604f96fe03cd1934f862a04c/checkipaconsistency-2.7.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "d89f365aa2421aa4eea2cc5b04aa3d38", "sha256": "18da72771c6731c332989270da2af57020b82b1745821afcc7fbe2246e0f78a1" }, "downloads": -1, "filename": "checkipaconsistency-2.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d89f365aa2421aa4eea2cc5b04aa3d38", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17424, "upload_time": "2017-12-29T22:14:35", "url": "https://files.pythonhosted.org/packages/d8/d4/49a93694c1db6a70aa5f44c4280de16b5aa4174f14943dbaab44e889f161/checkipaconsistency-2.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d51ef7650c4909017e446f973053f165", "sha256": "e71439803d16612d77924b006a44b032cc3bd26213dfd2382196067a7e4fd977" }, "downloads": -1, "filename": "checkipaconsistency-2.7.1.tar.gz", "has_sig": false, "md5_digest": "d51ef7650c4909017e446f973053f165", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12654, "upload_time": "2017-12-29T22:14:37", "url": "https://files.pythonhosted.org/packages/6f/59/6c281c080c6893bd5e7297d414334e154385516cc97dc140f3ec35367fe0/checkipaconsistency-2.7.1.tar.gz" } ], "2.7.10": [ { "comment_text": "", "digests": { "md5": "1ae49d69ab875565318d86674746e20d", "sha256": "3f00427129515a0598e9303612a520707150c782a4982fcbb24837bd86f23045" }, "downloads": -1, "filename": "checkipaconsistency-2.7.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ae49d69ab875565318d86674746e20d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24404, "upload_time": "2019-05-25T21:04:42", "url": "https://files.pythonhosted.org/packages/47/ff/042e322592f3d72ac0c346dbf2a758c1d2649d0b27ec8d093bb4bfe822b8/checkipaconsistency-2.7.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d6518e9a6d6d306c59887fbf56856b4", "sha256": "2399fe8ab19183e4cd078e4eb984ed3bb357363602904075f5de94b1b3f960b0" }, "downloads": -1, "filename": "checkipaconsistency-2.7.10.tar.gz", "has_sig": false, "md5_digest": "1d6518e9a6d6d306c59887fbf56856b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13333, "upload_time": "2019-05-25T21:04:44", "url": "https://files.pythonhosted.org/packages/ad/0d/8b147938b9f8a93e3a2fe41a80e15ec7e88d3847c8b7708200a9551e51d7/checkipaconsistency-2.7.10.tar.gz" } ], "2.7.2": [ { "comment_text": "", "digests": { "md5": "e56c7f7d7deb6b1f8846ec91fc60d277", "sha256": "e431a222c68f31917664bbbed8d83c153715dc56cf912c4a428e180d2901bc32" }, "downloads": -1, "filename": "checkipaconsistency-2.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e56c7f7d7deb6b1f8846ec91fc60d277", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16193, "upload_time": "2018-02-03T20:46:41", "url": "https://files.pythonhosted.org/packages/8e/e3/62b3645dff735c8b81b1fc691bdbdd2fd8b327df8ae817f2871bfca086f8/checkipaconsistency-2.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e28f7095b9d628321c0e606293828669", "sha256": "99156f5a709492c8149c59a13c6ca051b72885b57aa8c8fade65a1fe55197b0c" }, "downloads": -1, "filename": "checkipaconsistency-2.7.2.tar.gz", "has_sig": false, "md5_digest": "e28f7095b9d628321c0e606293828669", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12080, "upload_time": "2018-02-03T20:46:43", "url": "https://files.pythonhosted.org/packages/fa/4a/6270c9ff99af2e2c031018ac07934bced25fad9a74496e72418d354f5073/checkipaconsistency-2.7.2.tar.gz" } ], "2.7.3": [ { "comment_text": "", "digests": { "md5": "e124cb01ddb92df856995558c6a9d7c4", "sha256": "149cf6b50ead443864b07c581b02a4b175bb4bd162c60e28491ecba9b103b70a" }, "downloads": -1, "filename": "checkipaconsistency-2.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e124cb01ddb92df856995558c6a9d7c4", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16543, "upload_time": "2018-02-06T15:06:47", "url": "https://files.pythonhosted.org/packages/34/b1/0879c1319df822529264b41fbfbe62005bf7f6e5829ceaa7de8b6fc8ef6d/checkipaconsistency-2.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d8565aba252b0c758b87a109b70ff2d", "sha256": "33836d095a593e714e36154fc37a18669b8362dc354038d2ea98ee2a6cb99ef8" }, "downloads": -1, "filename": "checkipaconsistency-2.7.3.tar.gz", "has_sig": false, "md5_digest": "3d8565aba252b0c758b87a109b70ff2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12443, "upload_time": "2018-02-06T15:06:49", "url": "https://files.pythonhosted.org/packages/10/fe/2f7159bdfe0788a8345b5bdf5148eb0f3b9bbaf485b46f7f44c81f035379/checkipaconsistency-2.7.3.tar.gz" } ], "2.7.4": [ { "comment_text": "", "digests": { "md5": "848235777746e5a7213ff7dea743a622", "sha256": "9f6e62ed74030bf40dd626ec63eec2bcc78945ca37f63dfd87de9f1c8f588e1f" }, "downloads": -1, "filename": "checkipaconsistency-2.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "848235777746e5a7213ff7dea743a622", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16551, "upload_time": "2018-02-15T10:55:46", "url": "https://files.pythonhosted.org/packages/10/87/4ac15b5aaa8e84d36bdc650af66c3f06a39ec1285f037083cfcc24435ed7/checkipaconsistency-2.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad45cf03d507fe6c9a877da7cf22a313", "sha256": "7b8a34c9ab097e4e2e457c1fab6933e175a398ee9c05695ef437e80439450f93" }, "downloads": -1, "filename": "checkipaconsistency-2.7.4.tar.gz", "has_sig": false, "md5_digest": "ad45cf03d507fe6c9a877da7cf22a313", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13176, "upload_time": "2018-02-15T10:55:49", "url": "https://files.pythonhosted.org/packages/9d/1a/fcd816c15b80983a999e319be2523906365a32cd535ab606dc8f156fe508/checkipaconsistency-2.7.4.tar.gz" } ], "2.7.5": [ { "comment_text": "", "digests": { "md5": "2df89e99598912746512d6772186bd27", "sha256": "928cd19a376fa613ae7c26f79dd982bc29e2cc7bbb5ea813628eb473484a1c21" }, "downloads": -1, "filename": "checkipaconsistency-2.7.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2df89e99598912746512d6772186bd27", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 24286, "upload_time": "2018-11-06T23:23:54", "url": "https://files.pythonhosted.org/packages/79/98/7f5d0616988728d59fdcbe5a15df006ba835d187bd03e66e6820d6e4f7ca/checkipaconsistency-2.7.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3a11339fda160a97daacc1448f34948", "sha256": "a17103c99816c6128e1ba47955a4a7dfeb9e4b266e365093bb54bde82880d80c" }, "downloads": -1, "filename": "checkipaconsistency-2.7.5.tar.gz", "has_sig": false, "md5_digest": "e3a11339fda160a97daacc1448f34948", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13812, "upload_time": "2018-11-06T23:23:56", "url": "https://files.pythonhosted.org/packages/ac/ab/15865bf7f6252c43121e5d37d962a4be09e1fb00fbf668cb910dcb2a7771/checkipaconsistency-2.7.5.tar.gz" } ], "2.7.7": [ { "comment_text": "", "digests": { "md5": "4b40e2ddbdf787cce29f55d1fd67f8ad", "sha256": "8f4c82f279e9a189363dced9ec11e34580007a40fa46e5bdead647d387f4e32f" }, "downloads": -1, "filename": "checkipaconsistency-2.7.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b40e2ddbdf787cce29f55d1fd67f8ad", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 24377, "upload_time": "2018-11-08T17:03:02", "url": "https://files.pythonhosted.org/packages/02/55/05465f1ece34a3a213fcb2dcd5d5cf8e4cae0511dfd11c4722216f3c4665/checkipaconsistency-2.7.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "633c65f6e0fe9809754ee571fdc5c1ea", "sha256": "08645ff91745dd07e204b27a10ab0fefa167aeb0a13b9bd015d385efff52fe80" }, "downloads": -1, "filename": "checkipaconsistency-2.7.7.tar.gz", "has_sig": false, "md5_digest": "633c65f6e0fe9809754ee571fdc5c1ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13931, "upload_time": "2018-11-08T17:03:04", "url": "https://files.pythonhosted.org/packages/23/58/9c58dd5a4539649c0ffaec4e3eeb8e262bb482795fcef9f327fee3ae733e/checkipaconsistency-2.7.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1ae49d69ab875565318d86674746e20d", "sha256": "3f00427129515a0598e9303612a520707150c782a4982fcbb24837bd86f23045" }, "downloads": -1, "filename": "checkipaconsistency-2.7.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ae49d69ab875565318d86674746e20d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24404, "upload_time": "2019-05-25T21:04:42", "url": "https://files.pythonhosted.org/packages/47/ff/042e322592f3d72ac0c346dbf2a758c1d2649d0b27ec8d093bb4bfe822b8/checkipaconsistency-2.7.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d6518e9a6d6d306c59887fbf56856b4", "sha256": "2399fe8ab19183e4cd078e4eb984ed3bb357363602904075f5de94b1b3f960b0" }, "downloads": -1, "filename": "checkipaconsistency-2.7.10.tar.gz", "has_sig": false, "md5_digest": "1d6518e9a6d6d306c59887fbf56856b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13333, "upload_time": "2019-05-25T21:04:44", "url": "https://files.pythonhosted.org/packages/ad/0d/8b147938b9f8a93e3a2fe41a80e15ec7e88d3847c8b7708200a9551e51d7/checkipaconsistency-2.7.10.tar.gz" } ] }