{
"info": {
"author": "yan.gao",
"author_email": "373251686@qq.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"description": "Python client for `Consul.io `_\n======================================================\n\n|Build Status|\n|Github-actions Build Status|\n|License Status|\n|Pypi Status|\n|Pyversions Status|\n|Docs Status|\n|Coverage Status|\n\nExample\n-------\n\n.. code:: python\n\n import consul\n\n c = consul.Consul()\n\n # poll a key for updates\n index = None\n while True:\n index, data = c.kv.get('foo', index=index)\n print data['Value']\n\n # in another process\n c.kv.put('foo', 'bar')\n\nInstallation\n------------\n\n::\n\n pip install python-consul2\n\n**Note:** When using python-consul library in environment with proxy server, setting of ``http_proxy``, ``https_proxy`` and ``no_proxy`` environment variables can be required for proper functionality.\n\n.. |Build Status|\n image:: https://api.travis-ci.org/poppyred/python-consul2.svg?branch=master\n :target: https://travis-ci.org/poppyred/python-consul2\n\n.. |Github-actions Build Status|\n image:: https://github.com/poppyred/python-consul2/workflows/python-consul2-x86/badge.svg\n :target: https://github.com/poppyred/python-consul2/actions\n\n.. |License Status|\n image:: https://img.shields.io/pypi/l/python-consul2\n :target: https://github.com/poppyred/python-consul2/blob/master/LICENSE\n\n.. |Pypi Status|\n image:: https://img.shields.io/pypi/v/python-consul2\n :target: https://pypi.org/project/python-consul2/\n\n.. |Pyversions Status|\n image:: https://img.shields.io/pypi/pyversions/python-consul2\n :target: https://pypi.org/project/python-consul2/\n\n.. |Docs Status|\n image:: https://img.shields.io/readthedocs/python-consul2\n :target: https://python-consul2.readthedocs.io/\n\n\n\n\n\n.. |Coverage Status1|\n image:: https://codecov.io/gh/poppyred/python-consul2/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/poppyred/python-consul2\n\n.. |Coverage Status|\n image:: https://codecov.io/gh/poppyred/python-consul2/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/poppyred/python-consul2\n\nStatus\n------\nThis `python-consul `_ author may be a little busy, I will maintain a version\n`python-consul2 `_,\nwelcome to use. The new consul version was used(v1.6.1). Progressively\nimplement all API interfaces in the future\n\nThere's a few API endpoints still to go to expose all features available in\nConsul v1.6.1. If you need an endpoint that's not in the documentation, just\nopen an issue and I'll try and add it straight away.\n\nMailing List\n------------\n\n- 373251686@qq.com\n\nContributing\n------------\n\npython-consul2 is currently maintained by:\n\n- @poppyred\n\n\nPlease reach out if you're interested in being a maintainer as well. Otherwise,\nopen a PR or Issue we'll try and respond as quickly as we're able.\n\nIssue Labels\n~~~~~~~~~~~~\n\n:today!: Some triaging is in progress and this issue should be taken care of in\n a couple of hours!\n\n:priority: There's a clear need to address this issue and it's likely a core\n contributor will take it on. Opening a PR for these is greatly\n appreciated!\n\n:help wanted: This issue makes sense and would be useful. It's unlikely a core\n contributor will get to this though, so if you'd like to see it\n addressed please open a PR.\n\n:question: The need for the issue isn't clear or needs clarification, so please\n follow up. Issues in this state for a few months, without\n responses will likely will be closed.\n\nPRs\n~~~\n\nPull requests are very much appreciated! When you create a PR please ensure:\n\n#. All current tests pass, including flake8\n#. To add tests for your new features, if reasonable\n#. To add docstrings for new api features you add and if needed link to these\n docstrings from the sphinx documentation\n\nReleases\n~~~~~~~~\n\n.. code:: bash\n\n # release the current version, eg: 0.6.1-dev -> 0.6.1\n bumpversion release\n\n # prepare the next patch (z-stream) version, eg: 0.6.1 -> 0.6.2-dev\n bumpversion --no-tag patch\n\n # else, prepare the next minor (y-stream) version, eg: 0.6.1 -> 0.7.0-dev\n bumpversion --no-tag minor\n\n\nChange log\n==========\n\n0.0.1\n-----\n\nFeatures\n~~~~~~~~\n* forked from cablehead/python-consul\n* Fix `Consul.ACL` support\n\n\n0.0.4\n-----\n\nFeatures\n~~~~~~~~\n* implement Connect Config Snapshot consul_api\n\n\n0.0.5\n-----\n\nFeatures\n~~~~~~~~\n* implement all consul http-api\n\n\n0.0.8\n-----\n\nFeatures\n~~~~~~~~\n* Add TLSSkipVerify for HTTPS check \n\n0.0.16\n-------\n\nFeatures\n~~~~~~~~\n* Timeout added to http requests \n* Handle CONSUL_HTTP_ADDR including a http:// or https:// scheme \n\n0.0.17\n-------\n\nFeatures\n~~~~~~~~\n* removes the WriteRequest in the json body where used. \n* refactors the api token to use the `X-Consul-Token` header instead of a parameter, which is recommended and more secure.\n* Fix catalog.register node_meta in data not in params \n* Fix #7 #9 #10 #11\n\n0.1.0\n------\n\nFeatures\n~~~~~~~~\n* `long_description` has syntax errors in markup and would not be rendered on PyPI.\n\n0.1.3\n-----\n\nFeatures\n~~~~~~~~\n* Support `SkipNodeUpdate` parameter\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/poppyred/python-consul2",
"keywords": "",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "python-consul2",
"package_url": "https://pypi.org/project/python-consul2/",
"platform": "",
"project_url": "https://pypi.org/project/python-consul2/",
"project_urls": {
"Homepage": "https://github.com/poppyred/python-consul2"
},
"release_url": "https://pypi.org/project/python-consul2/0.1.5/",
"requires_dist": [
"requests",
"six (>=1.4)",
"aiohttp ; extra == 'asyncio'",
"tornado ; extra == 'tornado'",
"twisted ; extra == 'twisted'",
"treq ; extra == 'twisted'"
],
"requires_python": "",
"summary": "Python client for Consul (http://www.consul.io/)",
"version": "0.1.5",
"yanked": false,
"yanked_reason": null
},
"last_serial": 8453988,
"releases": {
"0.0.1": [
{
"comment_text": "",
"digests": {
"md5": "b6b55e3bfc91a6c824414d1f82242f2f",
"sha256": "bb17e3800d3cfaf67a44cb36b1b4a8d3628fdb5e33e6c2bdb59aeee3065be3a8"
},
"downloads": -1,
"filename": "python-consul2-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "b6b55e3bfc91a6c824414d1f82242f2f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23219,
"upload_time": "2019-09-17T05:36:30",
"upload_time_iso_8601": "2019-09-17T05:36:30.768918Z",
"url": "https://files.pythonhosted.org/packages/92/91/48089017c5a45123efc7256fb0d93331632c18ad636d811d4c71b1be7ca0/python-consul2-0.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.1.dev0": [
{
"comment_text": "",
"digests": {
"md5": "d3ab6348128bf0641f5591581d21d0f2",
"sha256": "62a7b382654f40070de4ad53e13b73e438ba2a458d7bc73a480bcf4ecab8da9d"
},
"downloads": -1,
"filename": "python-consul2-0.0.1.dev0.tar.gz",
"has_sig": false,
"md5_digest": "d3ab6348128bf0641f5591581d21d0f2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23236,
"upload_time": "2019-09-17T03:58:57",
"upload_time_iso_8601": "2019-09-17T03:58:57.038787Z",
"url": "https://files.pythonhosted.org/packages/cf/4b/084fccb6efd5d80497493c6bf0f963e19055352c0f998beab0042e812131/python-consul2-0.0.1.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.15": [
{
"comment_text": "",
"digests": {
"md5": "e2edf85a5e50642e93fdb0bb1f990d38",
"sha256": "fbf386932d059759cb2bc1c8000ee6783e7927a3e6d3db3589a8ea544e05c1a0"
},
"downloads": -1,
"filename": "python_consul2-0.0.15-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e2edf85a5e50642e93fdb0bb1f990d38",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 29384,
"upload_time": "2020-02-24T16:05:55",
"upload_time_iso_8601": "2020-02-24T16:05:55.622515Z",
"url": "https://files.pythonhosted.org/packages/da/2e/efaead4fc0b8e41a049feeb337330c64d5c373c4ec7d0aac83a72f22c123/python_consul2-0.0.15-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f25f90135c6184f3ab09ea294db71948",
"sha256": "177c3775f3282be46e35625d522f2cb10160d472b4fa1555916f2e772f9f8e5e"
},
"downloads": -1,
"filename": "python-consul2-0.0.15.tar.gz",
"has_sig": false,
"md5_digest": "f25f90135c6184f3ab09ea294db71948",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29999,
"upload_time": "2020-02-24T16:05:57",
"upload_time_iso_8601": "2020-02-24T16:05:57.504658Z",
"url": "https://files.pythonhosted.org/packages/1d/f5/6282b212070e2cbc4fdfe8453c7168445cc8c3b8044f7816651414b4d3ca/python-consul2-0.0.15.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.16": [
{
"comment_text": "",
"digests": {
"md5": "9555f335de422cc40ec5d9fc8f6e46e2",
"sha256": "9a2428e1d9ed72ed9ee6c7743e6dfcfc9a102dbd44749531b7029b100dc936c1"
},
"downloads": -1,
"filename": "python_consul2-0.0.16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9555f335de422cc40ec5d9fc8f6e46e2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 29384,
"upload_time": "2020-02-25T06:12:29",
"upload_time_iso_8601": "2020-02-25T06:12:29.816919Z",
"url": "https://files.pythonhosted.org/packages/f7/87/8d0dac971657fc1b193c8df215e924a1b2a3503101c4fb7f070e27c815a2/python_consul2-0.0.16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3991b95d523a5f8a7e29167b5919d580",
"sha256": "ad8a7a401e079d3403bc5e9c678a4b2ad6622712e819ed622f17cf2ea1a0f08b"
},
"downloads": -1,
"filename": "python-consul2-0.0.16.tar.gz",
"has_sig": false,
"md5_digest": "3991b95d523a5f8a7e29167b5919d580",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30463,
"upload_time": "2020-02-25T06:12:31",
"upload_time_iso_8601": "2020-02-25T06:12:31.340904Z",
"url": "https://files.pythonhosted.org/packages/42/78/f8f6572e1bf9743d2b9b4b4a9dcafd001e8eab935811717210416ea2668c/python-consul2-0.0.16.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.3.dev0": [
{
"comment_text": "",
"digests": {
"md5": "2ce333f7a065a8b0d659ea60f68be93b",
"sha256": "21763ca81360ab12da26853230184d1ddfc4e0db3034b3664ab9ce7372c866e1"
},
"downloads": -1,
"filename": "python-consul2-0.0.3.dev0.tar.gz",
"has_sig": false,
"md5_digest": "2ce333f7a065a8b0d659ea60f68be93b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23193,
"upload_time": "2019-09-18T03:33:57",
"upload_time_iso_8601": "2019-09-18T03:33:57.743773Z",
"url": "https://files.pythonhosted.org/packages/2c/d7/4bf4775e636ea39e480ab82876815a2d4a91d07694388ac0bed1889e5269/python-consul2-0.0.3.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.4": [
{
"comment_text": "",
"digests": {
"md5": "d8e620226a772f7437e2749a5ded7226",
"sha256": "2894fe9ecee557f84d0664dc28cf072c8d1b413074216f476c59212539cf8eee"
},
"downloads": -1,
"filename": "python-consul2-0.0.4.tar.gz",
"has_sig": false,
"md5_digest": "d8e620226a772f7437e2749a5ded7226",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25530,
"upload_time": "2019-10-09T07:38:46",
"upload_time_iso_8601": "2019-10-09T07:38:46.682349Z",
"url": "https://files.pythonhosted.org/packages/e4/66/73d975a7921905f205c87f65e4576127b5285bac2ac1cd491fb9a2b190eb/python-consul2-0.0.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.4.dev0": [
{
"comment_text": "",
"digests": {
"md5": "0c0655200ea44dc0ae408313854af511",
"sha256": "e718f49b3f5865fbabeed905990d5c3b88a296e7b4746b8d20fd961dc43a8311"
},
"downloads": -1,
"filename": "python-consul2-0.0.4.dev0.tar.gz",
"has_sig": false,
"md5_digest": "0c0655200ea44dc0ae408313854af511",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25544,
"upload_time": "2019-10-09T07:20:17",
"upload_time_iso_8601": "2019-10-09T07:20:17.052853Z",
"url": "https://files.pythonhosted.org/packages/e1/c9/0896eaf82b93ac57f286db0da9b86edd362dcf809473cbc9f3a3d50a7760/python-consul2-0.0.4.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.5": [
{
"comment_text": "",
"digests": {
"md5": "6c73ab8ac7b235a01611f3db81009f15",
"sha256": "f536f42c21b15cd7efc5b399f2172212115955af28697f37f75c5240121e53bc"
},
"downloads": -1,
"filename": "python-consul2-0.0.5.tar.gz",
"has_sig": false,
"md5_digest": "6c73ab8ac7b235a01611f3db81009f15",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29463,
"upload_time": "2019-10-15T03:15:16",
"upload_time_iso_8601": "2019-10-15T03:15:16.906584Z",
"url": "https://files.pythonhosted.org/packages/d4/b7/158f09a19ae7d02386ec5b812f686e7078ca4e9b390032060a7b75684190/python-consul2-0.0.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.5.dev0": [
{
"comment_text": "",
"digests": {
"md5": "877e1613586031c28feddfca872f9aff",
"sha256": "595d0680b86248c572b3c2bc32d4c964034b073e52498bffa409f609f8ef25bc"
},
"downloads": -1,
"filename": "python-consul2-0.0.5.dev0.tar.gz",
"has_sig": false,
"md5_digest": "877e1613586031c28feddfca872f9aff",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29468,
"upload_time": "2019-10-15T02:53:03",
"upload_time_iso_8601": "2019-10-15T02:53:03.721585Z",
"url": "https://files.pythonhosted.org/packages/e2/bd/b9f7d2689a4a5f967217a276c39506d23871abb7ff3526f4edc4405ced9a/python-consul2-0.0.5.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.6": [
{
"comment_text": "",
"digests": {
"md5": "9183c52e81e7ece19173ddccceab48fb",
"sha256": "771dbcf0b33ac391455b1233606e906b60c6d26888756ffa3b3bec7c5aeab538"
},
"downloads": -1,
"filename": "python-consul2-0.0.6.tar.gz",
"has_sig": false,
"md5_digest": "9183c52e81e7ece19173ddccceab48fb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29499,
"upload_time": "2019-10-15T03:24:57",
"upload_time_iso_8601": "2019-10-15T03:24:57.854781Z",
"url": "https://files.pythonhosted.org/packages/fa/05/fb7dc0f3a911e71f388ba11f8ffcad421e2a2d28eecf710ee4cf4137c601/python-consul2-0.0.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.7": [
{
"comment_text": "",
"digests": {
"md5": "77c84b1dd52a397d345c9b0e6e974565",
"sha256": "c726ae4516df7a4023dc7d045a724075788a066af4c5d0c3a6794bb68e5c7692"
},
"downloads": -1,
"filename": "python-consul2-0.0.7.tar.gz",
"has_sig": false,
"md5_digest": "77c84b1dd52a397d345c9b0e6e974565",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29752,
"upload_time": "2019-10-28T07:59:17",
"upload_time_iso_8601": "2019-10-28T07:59:17.821994Z",
"url": "https://files.pythonhosted.org/packages/5a/df/1c261092b26cbb84021ad5b4a5f92ff25e08c3b20d9cd63bc142694f5c37/python-consul2-0.0.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.0.9": [
{
"comment_text": "",
"digests": {
"md5": "55185baf38655c57adadeaa34eea2702",
"sha256": "203cacd8749217d260273db03472ec99b26d7814e5543a147e967e0e34600ebd"
},
"downloads": -1,
"filename": "python-consul2-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "55185baf38655c57adadeaa34eea2702",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29883,
"upload_time": "2019-12-16T04:09:27",
"upload_time_iso_8601": "2019-12-16T04:09:27.095261Z",
"url": "https://files.pythonhosted.org/packages/55/29/5758d61c47d69e503cf318e7b7831fa24c776e32a70ecb5d2fc6e8f64ebd/python-consul2-0.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "d96b2e95d31ff0f2e866c9d2ed08bc32",
"sha256": "2f4fde57f488b0cb64a78ee4a227c67957ac3308c0d9c678f53ce0d4aacf7401"
},
"downloads": -1,
"filename": "python_consul2-0.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d96b2e95d31ff0f2e866c9d2ed08bc32",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 30156,
"upload_time": "2020-05-09T08:00:21",
"upload_time_iso_8601": "2020-05-09T08:00:21.835086Z",
"url": "https://files.pythonhosted.org/packages/e6/78/c23c8f197090ae112308be84abd938a90c1b1552fb98bacbd9cd4282fd3a/python_consul2-0.1.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "dc9b7f26d25373812f0bfb3cf3dce7fe",
"sha256": "9b51860313311f4080d64a2a39cd41a6ea4aca091d05f72bb79cdc0bef42bae3"
},
"downloads": -1,
"filename": "python-consul2-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "dc9b7f26d25373812f0bfb3cf3dce7fe",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31197,
"upload_time": "2020-05-09T08:00:23",
"upload_time_iso_8601": "2020-05-09T08:00:23.425450Z",
"url": "https://files.pythonhosted.org/packages/1f/7a/20ea5de074d274e14275fab58c1db0a25aa253051f0915afa2d9ed774eb6/python-consul2-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "652eda89db3aec831be8a92d6e2c859e",
"sha256": "0c3e1216555d8a879c721c9a1a5ed22fd9548dc8ea2eae9f2705453f828ecfbc"
},
"downloads": -1,
"filename": "python_consul2-0.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "652eda89db3aec831be8a92d6e2c859e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 30156,
"upload_time": "2020-05-09T08:08:31",
"upload_time_iso_8601": "2020-05-09T08:08:31.040785Z",
"url": "https://files.pythonhosted.org/packages/33/88/9246b3b2dad622bbcff0e0663d2526953c9dde701c7395da0ab3017a7b2d/python_consul2-0.1.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6dd0dbead2c356cdb56c496990360406",
"sha256": "16fff61e97e5b1867e7f5a1bb51ae24100ce90a0e5a518b073355eed3f42d925"
},
"downloads": -1,
"filename": "python-consul2-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "6dd0dbead2c356cdb56c496990360406",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31616,
"upload_time": "2020-05-09T08:08:32",
"upload_time_iso_8601": "2020-05-09T08:08:32.173163Z",
"url": "https://files.pythonhosted.org/packages/73/56/4721e480bf9fea5810ab1bc2f7923978651d6ab5642150d7de5ea08a5e40/python-consul2-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "99405c1955a2b9257d472cab0f1e2849",
"sha256": "975edfd4d798a079f6c47cb6fafdea8583fff2969e52865c0d548cd1a39b04b9"
},
"downloads": -1,
"filename": "python_consul2-0.1.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "99405c1955a2b9257d472cab0f1e2849",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 29675,
"upload_time": "2020-07-28T06:22:05",
"upload_time_iso_8601": "2020-07-28T06:22:05.067024Z",
"url": "https://files.pythonhosted.org/packages/df/81/78bcbfb3d3393396d4e3e8265826b88ebd3d880be83a2e52ea3904f43d32/python_consul2-0.1.3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "882ebe659a823c427736169f35b67457",
"sha256": "117cdf70b0f08585b5bbece0e817bb18e07a37dd9ebe5b98340aeac65009e3b3"
},
"downloads": -1,
"filename": "python-consul2-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "882ebe659a823c427736169f35b67457",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31133,
"upload_time": "2020-07-28T06:22:06",
"upload_time_iso_8601": "2020-07-28T06:22:06.199674Z",
"url": "https://files.pythonhosted.org/packages/7e/ce/507a128af0185913998f2da9f9555f5879218a889c84b05cc00663d6884a/python-consul2-0.1.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.4": [
{
"comment_text": "",
"digests": {
"md5": "f87c960fb3f25099c3788d68e82f97bd",
"sha256": "a103a9328b2fb73063dbaf2b54efe48fc059757fec4b83c03f3d9168643bd392"
},
"downloads": -1,
"filename": "python_consul2-0.1.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f87c960fb3f25099c3788d68e82f97bd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 29845,
"upload_time": "2020-07-29T06:03:23",
"upload_time_iso_8601": "2020-07-29T06:03:23.102184Z",
"url": "https://files.pythonhosted.org/packages/72/90/27d13309d41892037a7dabc03b9acc4476c6f06318b83bbf2a75546df0a5/python_consul2-0.1.4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "01b039d877c275e3bb2c4ea13d0d0cf0",
"sha256": "8e68a397ce547f7c148046f373fa20c925dd9cc4f64ae10769862d61478d6613"
},
"downloads": -1,
"filename": "python-consul2-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "01b039d877c275e3bb2c4ea13d0d0cf0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31304,
"upload_time": "2020-07-29T06:03:24",
"upload_time_iso_8601": "2020-07-29T06:03:24.246206Z",
"url": "https://files.pythonhosted.org/packages/39/d0/17483479512b6050e9915f2980f18fab9a7d2a63119e19862f450cf41407/python-consul2-0.1.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.5": [
{
"comment_text": "",
"digests": {
"md5": "51c8216ea2a814faa0c40692cfb40be8",
"sha256": "ff8c6642c5a8d5f13a072e90adbad44cde824fc46fb2ab76b40dd1c77d6c0c41"
},
"downloads": -1,
"filename": "python_consul2-0.1.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "51c8216ea2a814faa0c40692cfb40be8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 30002,
"upload_time": "2020-10-20T06:19:53",
"upload_time_iso_8601": "2020-10-20T06:19:53.700984Z",
"url": "https://files.pythonhosted.org/packages/ff/52/5230ba94ededbfafa9df95c19f1272cf03916b6d33fce341936e3c74dd86/python_consul2-0.1.5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f46a8b181af7daf342d2966b0379352f",
"sha256": "29c859de73e17f36ab99be831fdc1d924f16e8772233277a28ef92b7b99995cd"
},
"downloads": -1,
"filename": "python-consul2-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "f46a8b181af7daf342d2966b0379352f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31445,
"upload_time": "2020-10-20T06:19:54",
"upload_time_iso_8601": "2020-10-20T06:19:54.982790Z",
"url": "https://files.pythonhosted.org/packages/a8/a3/bc0bdf7e0a68a1fa8e7a2302491e1931438a6d08ed21bd6830ba1595671b/python-consul2-0.1.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "51c8216ea2a814faa0c40692cfb40be8",
"sha256": "ff8c6642c5a8d5f13a072e90adbad44cde824fc46fb2ab76b40dd1c77d6c0c41"
},
"downloads": -1,
"filename": "python_consul2-0.1.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "51c8216ea2a814faa0c40692cfb40be8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 30002,
"upload_time": "2020-10-20T06:19:53",
"upload_time_iso_8601": "2020-10-20T06:19:53.700984Z",
"url": "https://files.pythonhosted.org/packages/ff/52/5230ba94ededbfafa9df95c19f1272cf03916b6d33fce341936e3c74dd86/python_consul2-0.1.5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f46a8b181af7daf342d2966b0379352f",
"sha256": "29c859de73e17f36ab99be831fdc1d924f16e8772233277a28ef92b7b99995cd"
},
"downloads": -1,
"filename": "python-consul2-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "f46a8b181af7daf342d2966b0379352f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31445,
"upload_time": "2020-10-20T06:19:54",
"upload_time_iso_8601": "2020-10-20T06:19:54.982790Z",
"url": "https://files.pythonhosted.org/packages/a8/a3/bc0bdf7e0a68a1fa8e7a2302491e1931438a6d08ed21bd6830ba1595671b/python-consul2-0.1.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"vulnerabilities": []
}