{
"info": {
"author": "Hkube",
"author_email": "hkube.dev@gmail.com",
"bugtrack_url": null,
"classifiers": [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
"description": "# HKube Python Wrapper\n[](https://travis-ci.org/kube-HPC/python-wrapper.hkube)\n\nHkube python wrapper provides a simple interface for integrating algorithm in HKube\n\nFor general information on HKube see [hkube.io](http://hkube.io/)\n## Installation\n```shell\npip install hkube-python-wrapper\n```\nDownload `hkubectl` [latest version](https://github.com/kube-HPC/hkubectl/releases).\n```bash\ncurl -Lo hkubectl https://github.com/kube-HPC/hkubectl/releases/download/$(curl -s https://api.github.com/repos/kube-HPC/hkubectl/releases/latest | grep -oP '\"tag_name\": \"\\K(.*)(?=\")')/hkubectl-linux \\\n&& chmod +x hkubectl \\\n&& sudo mv hkubectl /usr/local/bin/\n```\n> For mac replace with hkubectl-macos \n> For Windows download hkubectl-win.exe \n\nConfig `hkubectl` with your running Kubernetes.\n\n```bash\nhkubectl config # and follow the prompts\n```\n## Basic Usage (using hkube build feature)\ncreate a file for the algorithm entry-points (alg.py)\n```python\nfrom typing import Dict\nfrom hkube_python_wrapper import Algorunner, HKubeApi\ndef start(args: Dict, hkubeApi: HKubeApi):\n return 1\n```\nbuild the algorithm with `hkubectl`\n```bash\nhkubectl algorithm apply algorithm-name --codePath ./folder_of_alg_py --codeEntryPoint alg.py --env python --setCurrent\n```\n\n## Basic Usage (manual build)\n```python\nfrom typing import Dict\nfrom hkube_python_wrapper import Algorunner, HKubeApi\ndef start(args: Dict, hkubeApi: HKubeApi):\n return 1\nif __name__ == \"__main__\":\n Algorunner.Run(start=start)\n```\n\nThe `start` method accepts two arguments: \n\n**args**: dict of invocation input\n| key | type | description |\n|----------------|--------|---------------------------------------------------------------|\n| input | Array | algorithm input as defined in the pipeline descriptor |\n| jobId | string | The job ID of the pipeline run |\n| taskId | string | The task ID of the algorithm invocation |\n| nodeName | string | The name of the node in the pipeline descriptor |\n| pipelineName | string | The name of the pipeline |\n| batchIndex | int | For batch instance, the index in the batch array |\n| parentNodeName | string | For child (code-api) algorithm. The name of the invoking node |\n| info.rootJobId | string | for sub-pipeline, the jobId of the invoking pipeline |\n\n**hkubeApi**: instance of HKubeApi for code-api operations\n\n\n## Class HKubeApi\n---\n\nMethod `start_algorithm`\n----\n> def start_algorithm(\n> self,\n> algorithmName,\n> input=[],\n> includeResult=True,\n> blocking=False\n> )\nStarts an invocation of algorithm with input, and optionally waits for results\n\n#### Args\n**```algorithmName```**: `string`\n: The name of the algorithm to start.\n\n**```input```** :`array`\n: Optional input for the algorithm.\n\n**```includeResult```** :`bool`\n: if True, returns the result of the algorithm execution. \n default: True\n\n**```blocking```** :`bool`\n: if True, blocks until the algorithm finishes, and returns the results.\n If False, returns an awaiter object, that can be awaited (blocking) at a later time \n default: False\n\n#### Returns\nif blocking==False, returns an awaiter. If true, returns the result of the algorithm\n\n#### Example:\n```python\nhkubeApi.start_algorithm('some_algorithm',input=[3], blocking=True)\n```\n\nMethod `start_stored_subpipeline`\n----\n> def start_stored_subpipeline(\n> self,\n> name,\n> flowInput={},\n> includeResult=True,\n> blocking=False\n> )\nStarts an invocation of a sub-pipeline with input, and optionally waits for results \n\n#### Args\n**```name```** : `string` \n: The name of the pipeline to start.\n\n\n**```flowInput```** : `dict`\n: Optional flowInput for the pipeline.\n\n\n**```includeResult```** :`bool`\n: if True, returns the result of the pipeline execution. \n default: True\n\n\n**```blocking```** : bool\n: if True, blocks until the pipeline finishes, and returns the results.\n If False, returns an awaiter object, that can be awaited (blocking) at a later time \n default: False\n\n\n#### Returns\nif blocking==False, returns an awaiter. If true, returns the result of the pipeline\n\n#### Example:\n```python\nhkubeApi.start_stored_subpipeline('simple',flowInput={'foo':3},blocking=True)\n```\n\nMethod `start_raw_subpipeline`\n----\n> def start_raw_subpipeline(\n> self,\n> name,\n> nodes,\n> flowInput,\n> options={},\n> webhooks={},\n> includeResult=True,\n> blocking=False\n> )\nStarts an invocation of a sub-pipeline with input, nodes, options, and optionally waits for results \n\n#### Args\n**```name```** : `string` \n: The name of the pipeline to start.\n\n**```nodes```** : `string` \n: Array of nodes. See example below.\n\n**```flowInput```** : `dict`\n: FlowInput for the pipeline.\n\n**```options```** : `dict`\n: pipeline options (like in the pipeline descriptor).\n\n**```webhooks```** : `dict`\n: webhook options (like in the pipeline descriptor).\n\n**```includeResult```** :`bool`\n: if True, returns the result of the pipeline execution. \n default: True\n\n**```blocking```** : bool\n: if True, blocks until the pipeline finishes, and returns the results.\n If False, returns an awaiter object, that can be awaited (blocking) at a later time \n default: False\n\n#### Returns\nif blocking==False, returns an awaiter. If true, returns the result of the pipeline\n\n#### Example:\n```python\nnodes=[{'nodeName': 'd1', 'algorithmName': 'green-alg', 'input': ['@flowInput.foo']}]\nflowInput={'foo':3}\nhkubeApi.start_raw_subpipeline('ddd',nodes, flowInput,webhooks={}, options={}, blocking=True)\n```\n\n\n",
"description_content_type": "text/markdown",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/kube-HPC/python-wrapper.hkube",
"keywords": "",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "hkube-python-wrapper",
"package_url": "https://pypi.org/project/hkube-python-wrapper/",
"platform": "",
"project_url": "https://pypi.org/project/hkube-python-wrapper/",
"project_urls": {
"Homepage": "https://github.com/kube-HPC/python-wrapper.hkube"
},
"release_url": "https://pypi.org/project/hkube-python-wrapper/2.3.0/",
"requires_dist": [
"Events (==0.4)",
"websocket-client (==0.57.0)",
"simplejson (==3.17.2)",
"pymongo (==3.11.3)",
"msgpack (==1.0.2)",
"boto3 (<=1.17.20)",
"wsaccel (==0.6.2)",
"six (==1.15.0)",
"pyzmq (<=22.0.3)",
"pympler (==0.9)",
"jaeger-client (==4.0.0) ; python_version < \"3.2.0\"",
"jaeger-client (>=4.4.0) ; python_version >= \"3.2.0\""
],
"requires_python": "",
"summary": "Hkube Python Wrapper",
"version": "2.3.0",
"yanked": false,
"yanked_reason": null
},
"last_serial": 13611628,
"releases": {
"0.1.4": [
{
"comment_text": "",
"digests": {
"md5": "96032e5295f360a2d81a19f76a25e6e0",
"sha256": "c7a0f1586b6b38959f1ab8f467ed8ecf72855ae3ae8217ef9eb90fd11daffb2e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "96032e5295f360a2d81a19f76a25e6e0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5677,
"upload_time": "2019-06-11T07:18:35",
"upload_time_iso_8601": "2019-06-11T07:18:35.417396Z",
"url": "https://files.pythonhosted.org/packages/c2/50/f14f7d841300781cefd7901c113a00efa38e206ad94711c779b9e391f3e6/hkube_python_wrapper-0.1.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3724b1a22c72fa6012ce776da33c4b1f",
"sha256": "3c807477b4926cdaf56432586ae03e33e3fd35d4117800514d4b28f0e943ada0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "3724b1a22c72fa6012ce776da33c4b1f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3446,
"upload_time": "2019-06-11T07:18:36",
"upload_time_iso_8601": "2019-06-11T07:18:36.772038Z",
"url": "https://files.pythonhosted.org/packages/60/c3/6294f2a05d1e7b54b2f7f521e344df7275264617a06336af3e6e62e926cf/hkube_python_wrapper-0.1.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.5": [
{
"comment_text": "",
"digests": {
"md5": "a88a298dd6c4cbdbb5b9a16205836033",
"sha256": "1c5557484ded7f3e1737f177bc60a0313352f2b60e6ff53f9cf2a7f3c515371a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a88a298dd6c4cbdbb5b9a16205836033",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5701,
"upload_time": "2019-06-12T14:13:25",
"upload_time_iso_8601": "2019-06-12T14:13:25.166479Z",
"url": "https://files.pythonhosted.org/packages/4f/c9/576f78c06351b3023d15143ffb015ce3e3d54cc4affc940cc83b8de923b7/hkube_python_wrapper-0.1.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "d0888afed849720e2eac1b32838a14a3",
"sha256": "fcf74b6af4da137317a9d5d4498c027f056cdaf2b5c26d5f3437da44f752502e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "d0888afed849720e2eac1b32838a14a3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3484,
"upload_time": "2019-06-12T14:13:26",
"upload_time_iso_8601": "2019-06-12T14:13:26.611712Z",
"url": "https://files.pythonhosted.org/packages/50/f9/109b42d98edf96fd0b37fe5f57fe831363ec521d9560b6018dc39bdf130e/hkube_python_wrapper-0.1.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.6": [
{
"comment_text": "",
"digests": {
"md5": "ab684545d14c157e5ae24044d9720aac",
"sha256": "f687a65100ef63550c5f9f02c9ad447f3cfc0d5dff0a303b900c24378e6edaa2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ab684545d14c157e5ae24044d9720aac",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5695,
"upload_time": "2019-06-16T08:22:41",
"upload_time_iso_8601": "2019-06-16T08:22:41.594603Z",
"url": "https://files.pythonhosted.org/packages/35/b9/3e02c6cae0c07f48f40a264b26fed26979f1787aaac01e476ccfabaad8f3/hkube_python_wrapper-0.1.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "054152fda559b0944f60d72080d1ad9c",
"sha256": "256ff8092e432f860f2f7581e25552f1ac7da356207e96c0b43ca558fad9cc55"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.6.tar.gz",
"has_sig": false,
"md5_digest": "054152fda559b0944f60d72080d1ad9c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3480,
"upload_time": "2019-06-16T08:22:43",
"upload_time_iso_8601": "2019-06-16T08:22:43.794862Z",
"url": "https://files.pythonhosted.org/packages/6d/13/df823dc70a737dd8bf575086cc018d3d9ed3cf8a8cd79b216747a7d448a1/hkube_python_wrapper-0.1.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.7": [
{
"comment_text": "",
"digests": {
"md5": "35901485fd3ae868e83c037513d4942f",
"sha256": "325a90b83ee53fd6e3ee0a7df98e8d579d6a1f229b9de72a0e314e7b6cb27e97"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "35901485fd3ae868e83c037513d4942f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5683,
"upload_time": "2019-06-16T11:37:53",
"upload_time_iso_8601": "2019-06-16T11:37:53.514677Z",
"url": "https://files.pythonhosted.org/packages/49/4f/887de4ce6b189f7e34034ca8c7cd0ba4eb4b41e65491804496efe7c13e79/hkube_python_wrapper-0.1.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9a12146b151f022d26dc7ae3b39f5fb1",
"sha256": "6fa0afdd05a28bda480fa1c890efc8407065f540622bda49d1eab7ce0862a89e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.7.tar.gz",
"has_sig": false,
"md5_digest": "9a12146b151f022d26dc7ae3b39f5fb1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3467,
"upload_time": "2019-06-16T11:37:57",
"upload_time_iso_8601": "2019-06-16T11:37:57.056752Z",
"url": "https://files.pythonhosted.org/packages/c6/0b/050aa686b0693cdf99818740bb9bb89808c7088edd42eac32ee141a6a801/hkube_python_wrapper-0.1.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.8": [
{
"comment_text": "",
"digests": {
"md5": "19c4392ef1d26c0b3b13fdd13d0cb455",
"sha256": "6cbb81224ac439d5b759166298d9d6b774b038b73db7a2850fe86d18b30a0ffa"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.8-py3-none-any.whl",
"has_sig": false,
"md5_digest": "19c4392ef1d26c0b3b13fdd13d0cb455",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5680,
"upload_time": "2019-06-16T11:39:05",
"upload_time_iso_8601": "2019-06-16T11:39:05.249568Z",
"url": "https://files.pythonhosted.org/packages/01/b7/1a598b2d032b627dbe46fe873ac52595cf55d52b5129e41aae1ab8db4dbb/hkube_python_wrapper-0.1.8-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f3f822ea14b8ee3aba397aff7a7df5f7",
"sha256": "ca4f37b65221a5a1c494e138d5e2afdf63d4530865c8948089926681e66cebe5"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.8.tar.gz",
"has_sig": false,
"md5_digest": "f3f822ea14b8ee3aba397aff7a7df5f7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3466,
"upload_time": "2019-06-16T11:39:06",
"upload_time_iso_8601": "2019-06-16T11:39:06.689292Z",
"url": "https://files.pythonhosted.org/packages/5c/b4/b7492b429544e73515e05362aee27a72eb2c87ef6ce110996472aa360047/hkube_python_wrapper-0.1.8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.9": [
{
"comment_text": "",
"digests": {
"md5": "0d6236d2d42daef5cf9585bf255ca5e5",
"sha256": "1bc2b4e0ca49ee894377cd4facd95ffeca82bddd90ba4af8c3190e5ddd8a9b40"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0d6236d2d42daef5cf9585bf255ca5e5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5625,
"upload_time": "2019-06-19T10:45:52",
"upload_time_iso_8601": "2019-06-19T10:45:52.191111Z",
"url": "https://files.pythonhosted.org/packages/e6/55/90ff9c23f30c265430946479b35536d740d03209b3a00dca32c88a783d7e/hkube_python_wrapper-0.1.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "aa21befdb71f1b9d724ee43f7bdabe9d",
"sha256": "6f8ed47f16d1cf39cdc374d16eaecd140a12e052ad107492b47c3ddd869995af"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.1.9.tar.gz",
"has_sig": false,
"md5_digest": "aa21befdb71f1b9d724ee43f7bdabe9d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3408,
"upload_time": "2019-06-19T10:45:53",
"upload_time_iso_8601": "2019-06-19T10:45:53.750180Z",
"url": "https://files.pythonhosted.org/packages/10/bd/7395a7605d93f7eff1a94c075082fe4a1d0ce9ab9bc89f7669df0f27dc88/hkube_python_wrapper-0.1.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "23c2f3e3536bdc5d63e983b36337c660",
"sha256": "851b206ab4d112eb77a3e4bc4d712344ebf052607ef20130a478e0ab167ed57c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "23c2f3e3536bdc5d63e983b36337c660",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5622,
"upload_time": "2019-06-19T10:50:14",
"upload_time_iso_8601": "2019-06-19T10:50:14.682373Z",
"url": "https://files.pythonhosted.org/packages/58/0c/f889732f23287a1f68d03e8735c27644ec26f8fd641af2c1c0b2965b14e6/hkube_python_wrapper-0.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e1f93906ca991f3722296e2d60230ce7",
"sha256": "20d7c0b307498b48b16f8ea7f8291822026944c4089164bf401f73dec7b232e9"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "e1f93906ca991f3722296e2d60230ce7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3406,
"upload_time": "2019-06-19T10:50:16",
"upload_time_iso_8601": "2019-06-19T10:50:16.331560Z",
"url": "https://files.pythonhosted.org/packages/6c/1d/873ef295002ddc2261a68e2e4cb8ff77ddaaf836acbfb16f7c345bd14953/hkube_python_wrapper-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "47dd5a5b0cfb1792ef2bb01ae3a04042",
"sha256": "c31fb1ff312ee49a7978432c1defe69b623fe3f88a34323706492f47b7748d72"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.2.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "47dd5a5b0cfb1792ef2bb01ae3a04042",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5620,
"upload_time": "2019-06-23T08:20:29",
"upload_time_iso_8601": "2019-06-23T08:20:29.730013Z",
"url": "https://files.pythonhosted.org/packages/07/d2/e37907d9f161ec1979e28a0f5cec2f7d420eb2b2d79a1aab3f5ea0d53e53/hkube_python_wrapper-0.2.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "94d96fd11fd7b69909aec8c959c8efa6",
"sha256": "bf3fea0ee630d28d0836b24e48b5b99afd88aaa24ee0a5f4c232772385b78556"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "94d96fd11fd7b69909aec8c959c8efa6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3412,
"upload_time": "2019-06-23T08:20:31",
"upload_time_iso_8601": "2019-06-23T08:20:31.185196Z",
"url": "https://files.pythonhosted.org/packages/7a/a0/3196171556d14a90c2e6fd30dafdb563fc29c14f3c3483e05319aa1dc851/hkube_python_wrapper-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "0d4dd154535370c1a74c88e1b42d73cc",
"sha256": "167a42786d58d4e57ada52cf0600fa9d9b275ff5a3d3754bdb11c8ba8bb45c2a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.2.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0d4dd154535370c1a74c88e1b42d73cc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5621,
"upload_time": "2019-06-24T06:24:15",
"upload_time_iso_8601": "2019-06-24T06:24:15.360311Z",
"url": "https://files.pythonhosted.org/packages/d8/14/da71dc397b6e65f0e1f2edafe664f52a81e754bde14dac4ef6a1751f29e3/hkube_python_wrapper-0.2.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "400864b3fdddd886515e603609a247fd",
"sha256": "75ed5378d8e8ab8565909fcf03ecabebf78bf14389f133b13cba280690aae06f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "400864b3fdddd886515e603609a247fd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3427,
"upload_time": "2019-06-24T06:24:16",
"upload_time_iso_8601": "2019-06-24T06:24:16.862276Z",
"url": "https://files.pythonhosted.org/packages/62/7b/bd8e7b3f045273a070cad7dd4e20b6cade8bfe852ec9528ddc07c7f687de/hkube_python_wrapper-0.2.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.3": [
{
"comment_text": "",
"digests": {
"md5": "fac6baaa7081d91d593a60c4fe485f8c",
"sha256": "7e49dc546fbbe2db203cc33cb9734dee01ad37bd1ce3062c44e6d54337424af9"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.2.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "fac6baaa7081d91d593a60c4fe485f8c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 5623,
"upload_time": "2019-08-04T06:31:00",
"upload_time_iso_8601": "2019-08-04T06:31:00.398958Z",
"url": "https://files.pythonhosted.org/packages/4c/9d/ae1fe72c1f8d63e16ddc8162b543f658708d921adf83c2bfb0c4e662dcd5/hkube_python_wrapper-0.2.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f6c2757b7c0a577359d76d7fdbce836e",
"sha256": "daa4a4fc6e07ffee094041d9288f12d0bc792695dad937499d9af2214ff93ff5"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "f6c2757b7c0a577359d76d7fdbce836e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3383,
"upload_time": "2019-08-04T06:31:01",
"upload_time_iso_8601": "2019-08-04T06:31:01.887910Z",
"url": "https://files.pythonhosted.org/packages/7c/30/3fc3b5bd3082bbdf286c12fc8149170da87984f623995ef6ee0e7161544f/hkube_python_wrapper-0.2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "b825589e07c4afcdecf1ec07617bdf2d",
"sha256": "9b7b72fb1f6c3d54ec204c1680e03726ae20ff7ac576c353226f8a97281777b7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b825589e07c4afcdecf1ec07617bdf2d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8303,
"upload_time": "2019-09-16T13:01:41",
"upload_time_iso_8601": "2019-09-16T13:01:41.083883Z",
"url": "https://files.pythonhosted.org/packages/2d/eb/dc94b975a573c29cd0c6926c4084bbdb385d1e3da527e5f15b1921454278/hkube_python_wrapper-0.3.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9fe8af98a573a414ab2b6d4f28a1c646",
"sha256": "b8a3659a80a3fda5d4010568c7de81a6a09d4b65809de75dc87c827403b44fe3"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "9fe8af98a573a414ab2b6d4f28a1c646",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4785,
"upload_time": "2019-09-16T13:01:42",
"upload_time_iso_8601": "2019-09-16T13:01:42.515006Z",
"url": "https://files.pythonhosted.org/packages/a9/e8/9c43784839de8c211358fcb27c8ca7499657079425ec3310ea535dd9da3d/hkube_python_wrapper-0.3.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.3": [
{
"comment_text": "",
"digests": {
"md5": "f6a47239280fe2973c90c5e770b579ba",
"sha256": "c7bc90c3da6e1253e02d3fc27d213a49052d06e66d348b496b79277755a6d229"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f6a47239280fe2973c90c5e770b579ba",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8633,
"upload_time": "2019-10-30T14:00:13",
"upload_time_iso_8601": "2019-10-30T14:00:13.208298Z",
"url": "https://files.pythonhosted.org/packages/d0/13/f82a19a7d49875c82e3627628838a919788ddf7f8a48a50e940d52662414/hkube_python_wrapper-0.3.3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "82db9452c09797f25665583d5641586f",
"sha256": "8f2f0551bb170f304cbec0a91154ecf8bed1524aed6ead0302802daa2153b497"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.3.tar.gz",
"has_sig": false,
"md5_digest": "82db9452c09797f25665583d5641586f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5078,
"upload_time": "2019-10-30T14:00:14",
"upload_time_iso_8601": "2019-10-30T14:00:14.786782Z",
"url": "https://files.pythonhosted.org/packages/18/69/7dedcceb495c34de79e24fd521d1e8a46b80e82c1509e2c29853b06309c0/hkube_python_wrapper-0.3.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.3a1": [
{
"comment_text": "",
"digests": {
"md5": "66e899e9751b148021970bb7eef29822",
"sha256": "28c220ac843537be09e0c4bcd94a4ab5d0cea5f167ed6bd1650b17609066939d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.3a1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "66e899e9751b148021970bb7eef29822",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 7812,
"upload_time": "2019-10-10T08:11:43",
"upload_time_iso_8601": "2019-10-10T08:11:43.386439Z",
"url": "https://files.pythonhosted.org/packages/c4/41/46bb13d1c465e428429d924c64df6ac250c26bbbafbfd7f5c5c56e72edbf/hkube_python_wrapper-0.3.3a1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "d60b26803f1747bfa2c6ee371335784a",
"sha256": "5f54fbb4d73b4fe84fe6a8edbadde37d5e8754075bd74ce514846a6394eb4c80"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.3a1.tar.gz",
"has_sig": false,
"md5_digest": "d60b26803f1747bfa2c6ee371335784a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5089,
"upload_time": "2019-10-10T08:11:45",
"upload_time_iso_8601": "2019-10-10T08:11:45.053322Z",
"url": "https://files.pythonhosted.org/packages/fe/60/4d2d8116e9126a8dcecdcd61e1bd2aee37948529ed3b01a716587016d92f/hkube_python_wrapper-0.3.3a1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.3a2": [
{
"comment_text": "",
"digests": {
"md5": "16c39375f1fa544da1492e0ee7da6595",
"sha256": "dfa9659ffea84aba4693640783d9f25efd78699008feb8a6664ba1753116c754"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.3a2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "16c39375f1fa544da1492e0ee7da6595",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8661,
"upload_time": "2019-10-10T11:05:47",
"upload_time_iso_8601": "2019-10-10T11:05:47.809188Z",
"url": "https://files.pythonhosted.org/packages/69/43/1e062ba380292b80e13c9a714c83c793f1d833cf1d2ac4acb017f6511f0b/hkube_python_wrapper-0.3.3a2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "320dd3beb7bbd9d29a366abf80fa540f",
"sha256": "d9c720be07c33b3f9156661e879d3b4301a4da4ccf0bf84f3992b1e0b006e652"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.3a2.tar.gz",
"has_sig": false,
"md5_digest": "320dd3beb7bbd9d29a366abf80fa540f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5093,
"upload_time": "2019-10-10T11:05:49",
"upload_time_iso_8601": "2019-10-10T11:05:49.520536Z",
"url": "https://files.pythonhosted.org/packages/0d/86/cf0aa06b70b5cafe2a8084f278e798286930d35717d913caf2348f884119/hkube_python_wrapper-0.3.3a2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.4": [
{
"comment_text": "",
"digests": {
"md5": "97c289797469d5f7ad8bee1c7701321b",
"sha256": "6893374bd29ec121057a546d501582f6032a2a7e1f8c80dd4b091d564a5134c0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "97c289797469d5f7ad8bee1c7701321b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8952,
"upload_time": "2020-01-09T12:00:55",
"upload_time_iso_8601": "2020-01-09T12:00:55.662957Z",
"url": "https://files.pythonhosted.org/packages/13/a9/a81f65d2cfbc0d5ffa929789487c9c1d04eda1fd1a527bdbbf11527ecd6f/hkube_python_wrapper-0.3.4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "af587582c45079af52eab123290350b1",
"sha256": "76f5c453ef6d4f9216a2af94e2812b2d5298645dae22595fb6dd987e0a5f80d6"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.4.tar.gz",
"has_sig": false,
"md5_digest": "af587582c45079af52eab123290350b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5425,
"upload_time": "2020-01-09T12:00:57",
"upload_time_iso_8601": "2020-01-09T12:00:57.075198Z",
"url": "https://files.pythonhosted.org/packages/04/e3/a94718b388c2f7bbde98d9ac2b7bc52d4d6fbcd42958dda7aa505c97079b/hkube_python_wrapper-0.3.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.4a2": [
{
"comment_text": "",
"digests": {
"md5": "1005a857f32f7413ef5b71d98396ba19",
"sha256": "fd0fb8c7bd458e3b5fbe617e2f55109d41ad490893fc75ccef57869a7349d415"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.4a2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1005a857f32f7413ef5b71d98396ba19",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8978,
"upload_time": "2020-01-09T07:03:09",
"upload_time_iso_8601": "2020-01-09T07:03:09.286181Z",
"url": "https://files.pythonhosted.org/packages/77/6e/02214a37cc92c30af3faf7794a812d932b8ac6a2e3f40eecd826107f8303/hkube_python_wrapper-0.3.4a2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6b40b8ddec67c4e49abe81f0b03679f8",
"sha256": "bedf7f74ab7329f20767e679eaacfc52d3493313b8c38ad8c5de60cb42721a5c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.4a2.tar.gz",
"has_sig": false,
"md5_digest": "6b40b8ddec67c4e49abe81f0b03679f8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5422,
"upload_time": "2020-01-09T07:03:10",
"upload_time_iso_8601": "2020-01-09T07:03:10.871170Z",
"url": "https://files.pythonhosted.org/packages/bc/a4/272aff1f56b4f0485d807c28bba32a853b9de389e884126b7a8eb673503c/hkube_python_wrapper-0.3.4a2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.4a3": [
{
"comment_text": "",
"digests": {
"md5": "ea98e3b77573d02ced99681be7941556",
"sha256": "095bcd530d873a0a2fa89edfe0f4d4400e3079ecc4066f3af254f5572d0e9540"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.4a3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ea98e3b77573d02ced99681be7941556",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8987,
"upload_time": "2020-01-09T07:33:34",
"upload_time_iso_8601": "2020-01-09T07:33:34.087129Z",
"url": "https://files.pythonhosted.org/packages/cf/6e/f6309616d2d24a765c01295630db95d7e8ede4064c2544a8680bb882619e/hkube_python_wrapper-0.3.4a3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2a6f123bc9fd13fade9b5b5d6501a09d",
"sha256": "f098f7a3a7c767590915d8f88599102557b2ba35c01246851dcefe81d76d207b"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.4a3.tar.gz",
"has_sig": false,
"md5_digest": "2a6f123bc9fd13fade9b5b5d6501a09d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5436,
"upload_time": "2020-01-09T07:33:35",
"upload_time_iso_8601": "2020-01-09T07:33:35.293398Z",
"url": "https://files.pythonhosted.org/packages/9d/db/214f8bc5bdec183b4408c43a5d7d32fc5adffb0c26e0d90475bc965b4a34/hkube_python_wrapper-0.3.4a3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.5": [
{
"comment_text": "",
"digests": {
"md5": "29898eb3dbe3bb11968959829fb2ce1a",
"sha256": "e8b4a41d0a6b334f95c4f7eb28d1e07102f8c91d21c7a0f33868a42dffca7a48"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "29898eb3dbe3bb11968959829fb2ce1a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8960,
"upload_time": "2020-01-22T14:04:54",
"upload_time_iso_8601": "2020-01-22T14:04:54.632238Z",
"url": "https://files.pythonhosted.org/packages/c3/dd/5ff74453d64732f4aec8fc8fb31768b31a523ceb8dac418aa99b30fe3773/hkube_python_wrapper-0.3.5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "04e13a19e750aacc0b3fb7534ceb9b3c",
"sha256": "b009b23f9d011ac77baa11fc4ffd9978670fa2501fc57fe6ba10f2a68d5f23b9"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.5.tar.gz",
"has_sig": false,
"md5_digest": "04e13a19e750aacc0b3fb7534ceb9b3c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5437,
"upload_time": "2020-01-22T14:04:55",
"upload_time_iso_8601": "2020-01-22T14:04:55.811786Z",
"url": "https://files.pythonhosted.org/packages/fa/2e/70f88a173eb4c50c0585ff58107d831d32ad4129c529ac53c0b301772474/hkube_python_wrapper-0.3.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.5a1": [
{
"comment_text": "",
"digests": {
"md5": "8a0191e96fce7bec37b37ba57e0a8925",
"sha256": "45aadb6eccca96a249efdd0ddbb99a207b81008add7313605ba9e7ef3ddc98fc"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.5a1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8a0191e96fce7bec37b37ba57e0a8925",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8982,
"upload_time": "2020-01-22T13:57:48",
"upload_time_iso_8601": "2020-01-22T13:57:48.835739Z",
"url": "https://files.pythonhosted.org/packages/fc/5f/ee27e74f77f6d11908b93a101cd7c2a3b66a72c5e9fe3ddb292d719cb75c/hkube_python_wrapper-0.3.5a1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4db0db6c3ad8992afe455c69bbc138ad",
"sha256": "1b8402bf06efdba6eb6287af4fddea5c8cc3a0856c2d7da133915a10797b0915"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.5a1.tar.gz",
"has_sig": false,
"md5_digest": "4db0db6c3ad8992afe455c69bbc138ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5435,
"upload_time": "2020-01-22T13:57:50",
"upload_time_iso_8601": "2020-01-22T13:57:50.210094Z",
"url": "https://files.pythonhosted.org/packages/13/49/c417a9974d70c1d8a053e83b9526bd515b4c6d43632c3e3cf7e2d0cda49d/hkube_python_wrapper-0.3.5a1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.6": [
{
"comment_text": "",
"digests": {
"md5": "805a9a6bd639ab33fcc9894f1c454990",
"sha256": "1d5a908ae0228b432b395eaecd334f350c622d52341c2c0d1d54431e21375ea7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "805a9a6bd639ab33fcc9894f1c454990",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8960,
"upload_time": "2020-01-23T13:35:13",
"upload_time_iso_8601": "2020-01-23T13:35:13.703009Z",
"url": "https://files.pythonhosted.org/packages/8f/f2/26e0c06ce4cfa2c9a7aa326d3a24ddad0d4d65f7573e4a49a87f73bfda35/hkube_python_wrapper-0.3.6-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ae37024e7b17f56e5bef6945f0839c47",
"sha256": "f1749fba9457e2dfd8f9994b3084ad6113a3b66b761afa3f476ba3ca24ee5127"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.3.6.tar.gz",
"has_sig": false,
"md5_digest": "ae37024e7b17f56e5bef6945f0839c47",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5438,
"upload_time": "2020-01-23T13:35:15",
"upload_time_iso_8601": "2020-01-23T13:35:15.806943Z",
"url": "https://files.pythonhosted.org/packages/7e/e9/75c6ca4cd75c888e00c9edd93a10ce107e620ad81918160e03833badec91/hkube_python_wrapper-0.3.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0a1.dev1": [
{
"comment_text": "",
"digests": {
"md5": "c74098228d1e27236ce8e1ba503111bb",
"sha256": "8fd6bf8b7371ce8802322217afc74eeadede2f92c4738f0cfc4501d0d14e2f9a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c74098228d1e27236ce8e1ba503111bb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9017,
"upload_time": "2019-11-17T11:16:41",
"upload_time_iso_8601": "2019-11-17T11:16:41.237833Z",
"url": "https://files.pythonhosted.org/packages/da/1b/e24d5473544227a869ccbf3461e358fef0bbe3aca3d7e79809c5a8ed9dd3/hkube_python_wrapper-0.4.0a1.dev1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e696e7f0b5c2a30e61b02f2644cebef5",
"sha256": "4bc2e13293eda212031382ef218f5aa843e3b38a8686a81edc1e570e4834c5c2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev1.tar.gz",
"has_sig": false,
"md5_digest": "e696e7f0b5c2a30e61b02f2644cebef5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5379,
"upload_time": "2019-11-17T11:16:42",
"upload_time_iso_8601": "2019-11-17T11:16:42.718198Z",
"url": "https://files.pythonhosted.org/packages/37/5e/e73ddcbe27be0b6c64161985f5e0da93f0562bfd322a937675f9dd6251c1/hkube_python_wrapper-0.4.0a1.dev1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0a1.dev13": [
{
"comment_text": "",
"digests": {
"md5": "843e759063d24feb1b5507b1e1ed206d",
"sha256": "0b8b64459af5d2ef355723dae3a7388044e28dfd1e6320ec091ccc7c1abbcbef"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "843e759063d24feb1b5507b1e1ed206d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9347,
"upload_time": "2019-12-05T15:52:21",
"upload_time_iso_8601": "2019-12-05T15:52:21.375652Z",
"url": "https://files.pythonhosted.org/packages/8e/70/e2c9d8cd06cb0d27f9e41cc76e1b61bbaf997d74637478c8bb846b9e2d9b/hkube_python_wrapper-0.4.0a1.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8aac3da220686e6b1c35659a018d838b",
"sha256": "4814a72d49df3171d37b090feb38759d3fbde8e72a923b4971d3e0975f2d7a5c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev13.tar.gz",
"has_sig": false,
"md5_digest": "8aac3da220686e6b1c35659a018d838b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5688,
"upload_time": "2019-12-05T15:52:22",
"upload_time_iso_8601": "2019-12-05T15:52:22.900694Z",
"url": "https://files.pythonhosted.org/packages/28/6f/a204b647f836f7908bebe398af9c624a76ee6e48281d05f9665ae350a8d9/hkube_python_wrapper-0.4.0a1.dev13.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0a1.dev2": [
{
"comment_text": "",
"digests": {
"md5": "1254588cc6909f6ab5bcf869c0e02bb0",
"sha256": "c603e45f580abeae695f05723c2ff59c70e7e8a980542fb6936c8af38a3aa96a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1254588cc6909f6ab5bcf869c0e02bb0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9007,
"upload_time": "2019-11-17T11:20:24",
"upload_time_iso_8601": "2019-11-17T11:20:24.638633Z",
"url": "https://files.pythonhosted.org/packages/ce/eb/2a8a416eea4b9daccc841d53ae27be4d719c15463e13040fe825e1fe72e4/hkube_python_wrapper-0.4.0a1.dev2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5e12951f6b52bcc844a4f1fc93263386",
"sha256": "dfedab18ec9c284c66ab99c4dd5adfc3e04bf43018cde787ef0f612831b0091e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev2.tar.gz",
"has_sig": false,
"md5_digest": "5e12951f6b52bcc844a4f1fc93263386",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5365,
"upload_time": "2019-11-17T11:20:27",
"upload_time_iso_8601": "2019-11-17T11:20:27.144148Z",
"url": "https://files.pythonhosted.org/packages/bc/ec/ee46a70d456e6f8ec9bbf6b3446ac029fe5832247b098ad3b88e8ca7b71a/hkube_python_wrapper-0.4.0a1.dev2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0a1.dev3": [
{
"comment_text": "",
"digests": {
"md5": "0f32fdbb6918ca70abfc809acba89709",
"sha256": "3659bdc58caa0148624aea2f9948bbfd276923d50935380e556e8b815f846bf2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0f32fdbb6918ca70abfc809acba89709",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9062,
"upload_time": "2019-11-17T13:24:30",
"upload_time_iso_8601": "2019-11-17T13:24:30.343086Z",
"url": "https://files.pythonhosted.org/packages/0e/0a/3ceae4bbd96e694628f0cf5fee150c0645d1643d730d89566bce83e829dd/hkube_python_wrapper-0.4.0a1.dev3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "7860767491a4116910b836e18f48dccf",
"sha256": "dc52b5d8906dc86e269fd4d0bb28d8dd6ecc776ea8fc0472600f917e4072d2a9"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev3.tar.gz",
"has_sig": false,
"md5_digest": "7860767491a4116910b836e18f48dccf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5479,
"upload_time": "2019-11-17T13:24:31",
"upload_time_iso_8601": "2019-11-17T13:24:31.573055Z",
"url": "https://files.pythonhosted.org/packages/67/74/7c325c58e5e06d62a68b016d6694aad05b182f3579c0c90c06798a5cc550/hkube_python_wrapper-0.4.0a1.dev3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0a1.dev4": [
{
"comment_text": "",
"digests": {
"md5": "a691fe44e15ddce210fac7d5be2026dd",
"sha256": "5ebfefd909e5ef920904e3fd090dc4eb0e38fbcad01b8a7f37e84f1a7c5c2fc5"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a691fe44e15ddce210fac7d5be2026dd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9062,
"upload_time": "2019-11-18T13:52:32",
"upload_time_iso_8601": "2019-11-18T13:52:32.941292Z",
"url": "https://files.pythonhosted.org/packages/7b/94/fa26671aa42444b3f2430f7486e315c9fc7ee768a75ed4663f8a6862ceba/hkube_python_wrapper-0.4.0a1.dev4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "95af6a733213d7b80de8c57401437092",
"sha256": "44a027c7423ca983c1d1b915e64fc443096c661593999e50f2b0016b4461590d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-0.4.0a1.dev4.tar.gz",
"has_sig": false,
"md5_digest": "95af6a733213d7b80de8c57401437092",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5477,
"upload_time": "2019-11-18T13:52:34",
"upload_time_iso_8601": "2019-11-18T13:52:34.157166Z",
"url": "https://files.pythonhosted.org/packages/49/ad/04f10be401bc697daea897a9e8334f51efaf5d679aee83a3310f6bf0cc9a/hkube_python_wrapper-0.4.0a1.dev4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0a1.dev10": [
{
"comment_text": "",
"digests": {
"md5": "34f580ee5bc2856e665a009e6eef49ed",
"sha256": "5fd29b73e03f1c5184176e4c42c2f9fba77c44e27cc7d301a3bb2a69729b38aa"
},
"downloads": -1,
"filename": "hkube_python_wrapper-1.0.0a1.dev10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "34f580ee5bc2856e665a009e6eef49ed",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38492,
"upload_time": "2020-06-01T13:09:42",
"upload_time_iso_8601": "2020-06-01T13:09:42.579105Z",
"url": "https://files.pythonhosted.org/packages/0f/c1/24225f5c082aef29dc059afe495263fbd55cdcdcb892710320f7e79384b8/hkube_python_wrapper-1.0.0a1.dev10-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0a1.dev3": [
{
"comment_text": "",
"digests": {
"md5": "f4b6c9a650687ec897f42f0b5b56ebe8",
"sha256": "02b911e47bd7174402a20cf864f13988c4c0a90c96c4a87bc4ef3ec05b306322"
},
"downloads": -1,
"filename": "hkube_python_wrapper-1.0.0a1.dev3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f4b6c9a650687ec897f42f0b5b56ebe8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 34080,
"upload_time": "2020-05-14T10:14:38",
"upload_time_iso_8601": "2020-05-14T10:14:38.155725Z",
"url": "https://files.pythonhosted.org/packages/8b/dd/0a37f3eedd827ec962cd47409b39665bc4bdda08fa0e8bd2870a8d0dc156/hkube_python_wrapper-1.0.0a1.dev3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0a1.dev4": [
{
"comment_text": "",
"digests": {
"md5": "855a0c144f95c040fb68acac6909a727",
"sha256": "22d52184fa07c3c3f724d1a3f3839c733194c2ead07f1c8c3bc1c02989fabc11"
},
"downloads": -1,
"filename": "hkube_python_wrapper-1.0.0a1.dev4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "855a0c144f95c040fb68acac6909a727",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 34077,
"upload_time": "2020-05-17T06:33:57",
"upload_time_iso_8601": "2020-05-17T06:33:57.962563Z",
"url": "https://files.pythonhosted.org/packages/83/5c/ec9bb2bd65e2bb066d47fccad75be17391a6559da48092c6a94e00a3dff6/hkube_python_wrapper-1.0.0a1.dev4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0a1.dev5": [
{
"comment_text": "",
"digests": {
"md5": "0d6f0807bd6989d184cbc4a90918d191",
"sha256": "94b86234be778f8daf821cebfec470024e233e096c43943e9f6cde81c2af6420"
},
"downloads": -1,
"filename": "hkube_python_wrapper-1.0.0a1.dev5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0d6f0807bd6989d184cbc4a90918d191",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 34133,
"upload_time": "2020-05-18T07:29:10",
"upload_time_iso_8601": "2020-05-18T07:29:10.493982Z",
"url": "https://files.pythonhosted.org/packages/3a/b5/700f388b43eaede8d8ec2087d4b122da72d5e76faa4d4541ed7dcae2c3a0/hkube_python_wrapper-1.0.0a1.dev5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0a1.dev6": [
{
"comment_text": "",
"digests": {
"md5": "cd4b0e30c62170edfd34ce40c11cdd04",
"sha256": "8d2b3eee1353540fd1a513fb211943c046e85d8c22642284281a7a39a56d4a93"
},
"downloads": -1,
"filename": "hkube_python_wrapper-1.0.0a1.dev6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cd4b0e30c62170edfd34ce40c11cdd04",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 33762,
"upload_time": "2020-05-19T10:05:48",
"upload_time_iso_8601": "2020-05-19T10:05:48.108077Z",
"url": "https://files.pythonhosted.org/packages/2f/02/9ed9f2100074923f31ca2cc6e2cd1afa9399763da3834f619e6c66fc9378/hkube_python_wrapper-1.0.0a1.dev6-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0a1.dev7": [
{
"comment_text": "",
"digests": {
"md5": "cb681347e056ec0eea33a18d89981d9e",
"sha256": "b9ea1c1650ed79cb2925c5dcfdb7617dfbf52858bc9e91361eff5ac42361983f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-1.0.0a1.dev7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cb681347e056ec0eea33a18d89981d9e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 36069,
"upload_time": "2020-05-24T14:13:17",
"upload_time_iso_8601": "2020-05-24T14:13:17.375410Z",
"url": "https://files.pythonhosted.org/packages/62/b0/5ecde36142dac8ce69a9716eefa42fff2a989783bd7107da3524e9e5efac/hkube_python_wrapper-1.0.0a1.dev7-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0a1.dev8": [
{
"comment_text": "",
"digests": {
"md5": "83dd26ebc164642617d1f416161280aa",
"sha256": "932966eacd4194b59cc243c68c564b8b9675a74fb2d7bd4702e72a5a964fcabf"
},
"downloads": -1,
"filename": "hkube_python_wrapper-1.0.0a1.dev8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "83dd26ebc164642617d1f416161280aa",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 37141,
"upload_time": "2020-05-25T11:41:54",
"upload_time_iso_8601": "2020-05-25T11:41:54.302279Z",
"url": "https://files.pythonhosted.org/packages/7c/66/596a78230c5764705c81343d83c2de2b934aca52f1554a333c77fd6def61/hkube_python_wrapper-1.0.0a1.dev8-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0a1.dev9": [
{
"comment_text": "",
"digests": {
"md5": "6e5884c77751734ed207e0eae2e5130e",
"sha256": "71861297bac697eae88713cad943b15216c50de23d814e386b9b32eeee0be8ef"
},
"downloads": -1,
"filename": "hkube_python_wrapper-1.0.0a1.dev9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6e5884c77751734ed207e0eae2e5130e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38465,
"upload_time": "2020-06-01T12:10:29",
"upload_time_iso_8601": "2020-06-01T12:10:29.130781Z",
"url": "https://files.pythonhosted.org/packages/be/17/4705e0d61e68b5cc7373321fd0683a8eb6a21590da45156096400b8a6da8/hkube_python_wrapper-1.0.0a1.dev9-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "f13ca8f80591f8d269fe4324f9e05e8a",
"sha256": "69be176e5e8f9ca0a53028c6d034a6c1bc121dd08b35929d45370df2b2061f48"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "f13ca8f80591f8d269fe4324f9e05e8a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22264,
"upload_time": "2020-06-07T14:01:28",
"upload_time_iso_8601": "2020-06-07T14:01:28.354699Z",
"url": "https://files.pythonhosted.org/packages/30/59/b7fc342286a1a2ac746c5d73091a9bc9f8ecf9ac0f1acf5fec0ddbfe849e/hkube_python_wrapper-2.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.10": [
{
"comment_text": "",
"digests": {
"md5": "a527e24d55f7ae0627317bc80732e926",
"sha256": "95ec3286e47b1f5ffc86c09a8505e78e4a59f75dedcd3c391b1d4442664d75ba"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a527e24d55f7ae0627317bc80732e926",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39254,
"upload_time": "2020-08-13T13:54:47",
"upload_time_iso_8601": "2020-08-13T13:54:47.858944Z",
"url": "https://files.pythonhosted.org/packages/93/8d/1931b0935a452761ef82f7923eb91db027efb1fa2a64bbd8830ab90b3701/hkube_python_wrapper-2.0.10-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "174f41d84f2919340b74fb85f1bdd510",
"sha256": "53a383810052b7a1fd10f41da6967deaba2ef87ce584c58576eb9db9b7d0a9c7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.10.tar.gz",
"has_sig": false,
"md5_digest": "174f41d84f2919340b74fb85f1bdd510",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23846,
"upload_time": "2020-08-13T13:54:49",
"upload_time_iso_8601": "2020-08-13T13:54:49.023672Z",
"url": "https://files.pythonhosted.org/packages/7d/80/571dc85486b214ecbceb8ddc918f9a234f9d494ee8ed036639db92234d4f/hkube_python_wrapper-2.0.10.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.11": [
{
"comment_text": "",
"digests": {
"md5": "c449c47374ccce33d7a24739567d4587",
"sha256": "253df5aae111cde852aec587021eead3ba41fe3d47bb9d2793da25b51cb570df"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.11-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c449c47374ccce33d7a24739567d4587",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39390,
"upload_time": "2020-08-16T10:33:53",
"upload_time_iso_8601": "2020-08-16T10:33:53.651889Z",
"url": "https://files.pythonhosted.org/packages/d5/52/476efec97b8eb4511e8e255c9b947a4d80c41e66e6c41dc91f66c09ded25/hkube_python_wrapper-2.0.11-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c15cd86ee7477b0360c9adf2db6caac1",
"sha256": "a74cc9db6372b452e3511188b095054b8bd2e3132a37b3ba390313962f385576"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.11.tar.gz",
"has_sig": false,
"md5_digest": "c15cd86ee7477b0360c9adf2db6caac1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23981,
"upload_time": "2020-08-16T10:33:54",
"upload_time_iso_8601": "2020-08-16T10:33:54.807374Z",
"url": "https://files.pythonhosted.org/packages/fc/8b/a9b485538b133a8918bb7586ea1b8a299a396382602deb954e2302243c58/hkube_python_wrapper-2.0.11.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.12": [
{
"comment_text": "",
"digests": {
"md5": "1bf763cdfb23adda81b89df2629ff0da",
"sha256": "690b42537aa749815ea5df06e561e6343f8eae5c81765f2e9d46953dbcaae7a2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.12-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1bf763cdfb23adda81b89df2629ff0da",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 41497,
"upload_time": "2020-08-18T15:06:18",
"upload_time_iso_8601": "2020-08-18T15:06:18.055449Z",
"url": "https://files.pythonhosted.org/packages/71/a9/a18275f821e72fc436c1aa9e0f60e2188b879ff557ca68dd5775b580a061/hkube_python_wrapper-2.0.12-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "7d3b1ae58e295021e80694e78e1fc894",
"sha256": "873254d231b02477fc679bbaae85dd80d90f6dfb7cd1dfbcd1bfad3008c3f7aa"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.12.tar.gz",
"has_sig": false,
"md5_digest": "7d3b1ae58e295021e80694e78e1fc894",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27752,
"upload_time": "2020-08-18T15:06:19",
"upload_time_iso_8601": "2020-08-18T15:06:19.374333Z",
"url": "https://files.pythonhosted.org/packages/2f/e1/3a5b856dd20310231e4f6deb66f7cccf88942d91ba87387712fd60f2bb71/hkube_python_wrapper-2.0.12.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.13": [
{
"comment_text": "",
"digests": {
"md5": "b28da010c8817bc5c5e26450879ae12b",
"sha256": "a8f9807bd63462043bc94a6eab96b688f77bf9ed6384d0a68433f21800ee7bca"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b28da010c8817bc5c5e26450879ae12b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 41840,
"upload_time": "2020-08-24T15:51:17",
"upload_time_iso_8601": "2020-08-24T15:51:17.652322Z",
"url": "https://files.pythonhosted.org/packages/2b/80/eea054e314cc65204fdf4a64754d6a25d3d5d070c33fe7319d6df79bc12b/hkube_python_wrapper-2.0.13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "59ffd05c8afedebdd7b1c1167962333a",
"sha256": "348cbfe2bd5716c0a2afb57ee238d334330d0a1dcc843e95ecbb1d404c8f3bf6"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.13.tar.gz",
"has_sig": false,
"md5_digest": "59ffd05c8afedebdd7b1c1167962333a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28009,
"upload_time": "2020-08-24T15:51:18",
"upload_time_iso_8601": "2020-08-24T15:51:18.988242Z",
"url": "https://files.pythonhosted.org/packages/3b/b7/a9a12995bfeeb256233459f84c309edb34927ed9400d3b1156822e0e5fe4/hkube_python_wrapper-2.0.13.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.14": [
{
"comment_text": "",
"digests": {
"md5": "31c862597aa2fe4b1a1b5be458853566",
"sha256": "5d3b4857fa949c87692ccc560ceaa16b87b046c23ddfcc7d6c2304262fe6e259"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.14-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "31c862597aa2fe4b1a1b5be458853566",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 41948,
"upload_time": "2020-08-25T07:33:11",
"upload_time_iso_8601": "2020-08-25T07:33:11.886480Z",
"url": "https://files.pythonhosted.org/packages/c8/8b/67205ab023b88077520faed340a0895dd88ef994e3e7d0e43e78d5befa32/hkube_python_wrapper-2.0.14-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "79bcad1e6edc135f72c7261bee2c7517",
"sha256": "f16a84fa4bf846b3ee1459642fd881dbc47360f1af8843b23aaa0cd822ea9dcb"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.14.tar.gz",
"has_sig": false,
"md5_digest": "79bcad1e6edc135f72c7261bee2c7517",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28075,
"upload_time": "2020-08-25T07:33:13",
"upload_time_iso_8601": "2020-08-25T07:33:13.377025Z",
"url": "https://files.pythonhosted.org/packages/90/be/8308606e3ce3729207596c182cd0660c2933a828674c45d0632a754e9630/hkube_python_wrapper-2.0.14.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.15": [
{
"comment_text": "",
"digests": {
"md5": "498004b700cb9118886def6a739f7879",
"sha256": "bab05245c2077e059af0ac0c91b2f375c0d4168f598568ed896d9176556ba615"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.15-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "498004b700cb9118886def6a739f7879",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 41865,
"upload_time": "2020-08-25T07:57:28",
"upload_time_iso_8601": "2020-08-25T07:57:28.516632Z",
"url": "https://files.pythonhosted.org/packages/28/a7/08931f26e51cc0897c7adea2f34b4a60e387c094d44f1980244a3f6f9b9a/hkube_python_wrapper-2.0.15-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5cd2dfece20fa770e6ba5a7117f288d8",
"sha256": "48642b420d25859f965c675da6f316be82b3bb1aaf84b4e5d56a0dbb32bf3631"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.15.tar.gz",
"has_sig": false,
"md5_digest": "5cd2dfece20fa770e6ba5a7117f288d8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28042,
"upload_time": "2020-08-25T07:57:29",
"upload_time_iso_8601": "2020-08-25T07:57:29.838964Z",
"url": "https://files.pythonhosted.org/packages/97/b2/730e04ca5e0f274b880f544f2a32e706e5e35208a655479ca208c46fc653/hkube_python_wrapper-2.0.15.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.16": [
{
"comment_text": "",
"digests": {
"md5": "7d35e70e80d290201bc0f9aa45898374",
"sha256": "42aed274837896134763d442a2b756dd0be8a33a88633520d3b174d3dc1b7e1a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7d35e70e80d290201bc0f9aa45898374",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 42455,
"upload_time": "2020-09-01T13:22:14",
"upload_time_iso_8601": "2020-09-01T13:22:14.871580Z",
"url": "https://files.pythonhosted.org/packages/a1/b4/3f63fcd264e157cffcdf8eb4f7bd8a92dfd1a84f8519a60f8575c632278b/hkube_python_wrapper-2.0.16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "7464a4d7d013750067adeece9a9daa20",
"sha256": "532402932f3b29467518c0fdecd22c17483917bfbe7f52f5c1546c7ead18e319"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.16.tar.gz",
"has_sig": false,
"md5_digest": "7464a4d7d013750067adeece9a9daa20",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28322,
"upload_time": "2020-09-01T13:22:16",
"upload_time_iso_8601": "2020-09-01T13:22:16.168286Z",
"url": "https://files.pythonhosted.org/packages/9a/65/8d63c9b1bb7937a98d890ee6ab3fe624757da54b798d29416e3afa06d4d4/hkube_python_wrapper-2.0.16.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.17": [
{
"comment_text": "",
"digests": {
"md5": "436fc33cf798edc9d8747cd7f5eab978",
"sha256": "febab229ab822ecfd4d7f6d367b8314e281bbda025f8868b06163782c9ef4419"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "436fc33cf798edc9d8747cd7f5eab978",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 42838,
"upload_time": "2020-09-01T14:37:28",
"upload_time_iso_8601": "2020-09-01T14:37:28.142152Z",
"url": "https://files.pythonhosted.org/packages/f5/45/38492b63f9db6a709319026a651b0c6e98d44b8478276d0ffc83b0aa3c62/hkube_python_wrapper-2.0.17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3532ebdd39a0c430abf6d6707c87b683",
"sha256": "95ae3c3d4711a4d86c509acb2912742f211e34960404ba9b4d78bee820362e88"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.17.tar.gz",
"has_sig": false,
"md5_digest": "3532ebdd39a0c430abf6d6707c87b683",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28677,
"upload_time": "2020-09-01T14:37:29",
"upload_time_iso_8601": "2020-09-01T14:37:29.525284Z",
"url": "https://files.pythonhosted.org/packages/d8/6b/e002f4a7397cd38d3ae21bce052df4e4ddda7676c9c1819616e506cacb6c/hkube_python_wrapper-2.0.17.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.18": [
{
"comment_text": "",
"digests": {
"md5": "f1e0b9d5406970256f42e48308eea894",
"sha256": "7ba29fe547cfd10b516add6fffe68327b152582a90ad5812ba45440cdcd8c183"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f1e0b9d5406970256f42e48308eea894",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 42659,
"upload_time": "2020-09-13T11:20:28",
"upload_time_iso_8601": "2020-09-13T11:20:28.642780Z",
"url": "https://files.pythonhosted.org/packages/d2/8e/de9486e6000a2359ed82698b32204d4888665fd012149cde51e3b530d5a1/hkube_python_wrapper-2.0.18-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4e296e3f4672cbe9b2a44285acf9033a",
"sha256": "f3505b9cacb7a9d752417349966ea1f9b793f0764de3b30f0e6248646e360250"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.18.tar.gz",
"has_sig": false,
"md5_digest": "4e296e3f4672cbe9b2a44285acf9033a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28506,
"upload_time": "2020-09-13T11:20:30",
"upload_time_iso_8601": "2020-09-13T11:20:30.112955Z",
"url": "https://files.pythonhosted.org/packages/59/e7/b68215b17834d0fbebd0fba33706aa6bc48f492b6fce876cede406044436/hkube_python_wrapper-2.0.18.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.19": [
{
"comment_text": "",
"digests": {
"md5": "b29e665f4bf09e0de057b9388098aa7a",
"sha256": "9b47d3c64e394a256e53f4f9c0fea81f7bb3c2a9eb227b75be2afdc10b81e025"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.19-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b29e665f4bf09e0de057b9388098aa7a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 43620,
"upload_time": "2020-09-13T12:46:50",
"upload_time_iso_8601": "2020-09-13T12:46:50.442045Z",
"url": "https://files.pythonhosted.org/packages/11/fc/28674da3d597a079db9e80aa51b32b857def7ff4c5b8f4ae0dbcecea4021/hkube_python_wrapper-2.0.19-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "aa9bcd7f8413e44f1c8983eee6d25a18",
"sha256": "12e4c10a7c3e6168991622c220624e615cbffaf931aaa9809a798c954e777da2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.19.tar.gz",
"has_sig": false,
"md5_digest": "aa9bcd7f8413e44f1c8983eee6d25a18",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28951,
"upload_time": "2020-09-13T12:46:51",
"upload_time_iso_8601": "2020-09-13T12:46:51.465458Z",
"url": "https://files.pythonhosted.org/packages/d5/46/af78f14d918f2516a8da9159f875189033af679ef3e3c44d67640b12faa0/hkube_python_wrapper-2.0.19.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.2": [
{
"comment_text": "",
"digests": {
"md5": "4cb9d0138b60922b2b8e7d5ffdf49bfb",
"sha256": "b5af371cb1c116776b6191ee070d030bf085ec00cefcba171f604dc5828a9109"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4cb9d0138b60922b2b8e7d5ffdf49bfb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 37295,
"upload_time": "2020-06-07T14:16:25",
"upload_time_iso_8601": "2020-06-07T14:16:25.101357Z",
"url": "https://files.pythonhosted.org/packages/ff/21/e4b86cdfbbb2dfa6309d8387b3b3864f3e650afd138d14e8b5aab3fedb82/hkube_python_wrapper-2.0.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "558e467b5d7c092ed8f6d35eb301bc7e",
"sha256": "727bd8a248e36631fb4e468785f46d586a3e015f7b7b0b2857b032eb08bf731e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.2.tar.gz",
"has_sig": false,
"md5_digest": "558e467b5d7c092ed8f6d35eb301bc7e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22262,
"upload_time": "2020-06-07T14:16:26",
"upload_time_iso_8601": "2020-06-07T14:16:26.149871Z",
"url": "https://files.pythonhosted.org/packages/20/5d/eec983e914e0e979990aaa9de1fc4a99c5e53d70bd419ece9dc10b475e92/hkube_python_wrapper-2.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.20": [
{
"comment_text": "",
"digests": {
"md5": "4c39dd33eade9c44f5eb80bdd77b0034",
"sha256": "267b195d90bf2a0c0363562a1aa5696195f5b2e4ece1adf415a04b2c45645779"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.20-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4c39dd33eade9c44f5eb80bdd77b0034",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 45934,
"upload_time": "2020-09-15T07:55:51",
"upload_time_iso_8601": "2020-09-15T07:55:51.678525Z",
"url": "https://files.pythonhosted.org/packages/e7/75/3975e121c7b01f4e33c8e2b40fb59e716051442073dbbe1ed0c6654ed765/hkube_python_wrapper-2.0.20-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "95cccfd246d499b737d9ccbb381995b3",
"sha256": "b5997f6b0ebafa1da705c4b7d5c7c93c6a756ef09a04fde35fc85a81182bced8"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.20.tar.gz",
"has_sig": false,
"md5_digest": "95cccfd246d499b737d9ccbb381995b3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30074,
"upload_time": "2020-09-15T07:55:52",
"upload_time_iso_8601": "2020-09-15T07:55:52.882506Z",
"url": "https://files.pythonhosted.org/packages/00/ba/539dd5230286c95c2977aef12989a1c013b78bcb38127afcb02dfe1019f2/hkube_python_wrapper-2.0.20.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.21": [
{
"comment_text": "",
"digests": {
"md5": "5dc671e76386d646eeb3278bd20ac741",
"sha256": "4783aae5df61032d0cd5d79ac31058c334bd5fb92caa723272eaf4788df54ede"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5dc671e76386d646eeb3278bd20ac741",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 46154,
"upload_time": "2020-09-16T13:46:47",
"upload_time_iso_8601": "2020-09-16T13:46:47.528688Z",
"url": "https://files.pythonhosted.org/packages/d4/be/3ef5274d694f6e9dc1884cfe04031ef886122353b676e7f56e6b056eabca/hkube_python_wrapper-2.0.21-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "db89aa2d992184de48adc8e8639f3b63",
"sha256": "437c6b0aecc6cc135db6e08ca6d7959f87097b1235530abf1cd2c010c30896cb"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.21.tar.gz",
"has_sig": false,
"md5_digest": "db89aa2d992184de48adc8e8639f3b63",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30355,
"upload_time": "2020-09-16T13:46:48",
"upload_time_iso_8601": "2020-09-16T13:46:48.721756Z",
"url": "https://files.pythonhosted.org/packages/9b/01/7ab79205f0f619b69d52a31d933688b82cbb898397b4309c835532df0d0f/hkube_python_wrapper-2.0.21.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.22": [
{
"comment_text": "",
"digests": {
"md5": "92c47f989a0d4d6b6573e9df03603984",
"sha256": "305c4a3199864f81c19e44dc951eb1b48ba05bd1281fba658204b1745877edab"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.22-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "92c47f989a0d4d6b6573e9df03603984",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 46840,
"upload_time": "2020-09-23T07:20:57",
"upload_time_iso_8601": "2020-09-23T07:20:57.646774Z",
"url": "https://files.pythonhosted.org/packages/f4/0f/877104e80c4ee941d0e4342afc985595285be71825ef9215b9771deb71e0/hkube_python_wrapper-2.0.22-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f64b8ad0d8c247500c09a03f5159839c",
"sha256": "fcd874817fc6ab62ead0f25c2d862976ccf832c624d33b7431e7403cb138d9e8"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.22.tar.gz",
"has_sig": false,
"md5_digest": "f64b8ad0d8c247500c09a03f5159839c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30753,
"upload_time": "2020-09-23T07:20:59",
"upload_time_iso_8601": "2020-09-23T07:20:59.409474Z",
"url": "https://files.pythonhosted.org/packages/ef/c0/a05db2d05e2c997325e3def538c85983f18b2df92277912a300bcddb21f5/hkube_python_wrapper-2.0.22.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.23": [
{
"comment_text": "",
"digests": {
"md5": "1f85d8ba8787c291b2f38c0031543df1",
"sha256": "076da48e03a4909ca32208f91f5d29d30c457ad7d8e07dc56373505a5c34ea8c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.23-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1f85d8ba8787c291b2f38c0031543df1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 47621,
"upload_time": "2020-09-24T08:03:57",
"upload_time_iso_8601": "2020-09-24T08:03:57.198781Z",
"url": "https://files.pythonhosted.org/packages/b2/e3/c86394771c32ea44622e5141d6b1dc4d0865aff04e916bfbdb333e88c435/hkube_python_wrapper-2.0.23-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1925e4063f10e7e47f61c8fbeb54d4d3",
"sha256": "ee66007d94cbf5890560dac7da0ae4ee768397dfe988a95efe1869d40f771152"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.23.tar.gz",
"has_sig": false,
"md5_digest": "1925e4063f10e7e47f61c8fbeb54d4d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31176,
"upload_time": "2020-09-24T08:03:58",
"upload_time_iso_8601": "2020-09-24T08:03:58.944757Z",
"url": "https://files.pythonhosted.org/packages/6b/ea/7d438fec7ac40916245da318c46fc5e1541e1e181c2c6c06e526bea06051/hkube_python_wrapper-2.0.23.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.24": [
{
"comment_text": "",
"digests": {
"md5": "cb697fa6a5c96542585f41e8744820b9",
"sha256": "263666babf74c3eccb8f3c8afbf30d07827b6e2eda4a56e8a379f0b579fc19c0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.24-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cb697fa6a5c96542585f41e8744820b9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 47641,
"upload_time": "2020-09-30T07:04:28",
"upload_time_iso_8601": "2020-09-30T07:04:28.826888Z",
"url": "https://files.pythonhosted.org/packages/5b/c7/506c787411307dbc78acba3de5417b24daf64dbb4ded14ae2c1ba4e0076e/hkube_python_wrapper-2.0.24-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "66ad27705260911cf874b05ce36be2b5",
"sha256": "d209211fa567829d294eed4de2dbf1e7cde9b65bf84bb1092b77b32a4f7048d2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.24.tar.gz",
"has_sig": false,
"md5_digest": "66ad27705260911cf874b05ce36be2b5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31172,
"upload_time": "2020-09-30T07:04:30",
"upload_time_iso_8601": "2020-09-30T07:04:30.272419Z",
"url": "https://files.pythonhosted.org/packages/13/5c/56a7303d2630304d29fa0ef19d05f7b462306aaffdfe932533838d773303/hkube_python_wrapper-2.0.24.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.25": [
{
"comment_text": "",
"digests": {
"md5": "6e84b733f41f72edce8220f19e5b75c3",
"sha256": "01772da57489668d84db41160252102d21e9e83c18d3c5f57d5b72aad7346e7f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6e84b733f41f72edce8220f19e5b75c3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 47643,
"upload_time": "2020-10-01T13:06:17",
"upload_time_iso_8601": "2020-10-01T13:06:17.180784Z",
"url": "https://files.pythonhosted.org/packages/a7/62/cfb68a605f308c5ced11556a9ed9b060e297219ebeeccb4aff56553867d7/hkube_python_wrapper-2.0.25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5de22ce9ebfc09bfdaa828912a6e4e02",
"sha256": "8c5dca09ded285649d28dfc007fc0f4f83925b616b7f7da61647ed4c04148e84"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.25.tar.gz",
"has_sig": false,
"md5_digest": "5de22ce9ebfc09bfdaa828912a6e4e02",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31184,
"upload_time": "2020-10-01T13:06:18",
"upload_time_iso_8601": "2020-10-01T13:06:18.778798Z",
"url": "https://files.pythonhosted.org/packages/3f/1e/fed239d5c0ecd0e72e8994607d31d9e0c6c1934fb92a176a901beaceb238/hkube_python_wrapper-2.0.25.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.26": [
{
"comment_text": "",
"digests": {
"md5": "17df69c8028ea9a7a36aa8741682039b",
"sha256": "c553cf81f16ccc1baee5ea6a00d5677e5bcc143b985df5a2dfc77bd7c8ab903a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.26-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "17df69c8028ea9a7a36aa8741682039b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 47645,
"upload_time": "2020-10-04T10:05:09",
"upload_time_iso_8601": "2020-10-04T10:05:09.405484Z",
"url": "https://files.pythonhosted.org/packages/b5/da/1d97de6d3cd074151b5768e74510b670a55bec67c2081e6ed30de543f80e/hkube_python_wrapper-2.0.26-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "59da5959c436e6b04272b4b9d2df8024",
"sha256": "6a2dbad3e186ad01660d0fd0c42f3c6f5dfe145fe40b30b4e8f0d0087776785e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.26.tar.gz",
"has_sig": false,
"md5_digest": "59da5959c436e6b04272b4b9d2df8024",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31181,
"upload_time": "2020-10-04T10:05:10",
"upload_time_iso_8601": "2020-10-04T10:05:10.780552Z",
"url": "https://files.pythonhosted.org/packages/90/45/b02a16b5c1524928927ff999c2df325a45fe2035d98593571929eca3ea84/hkube_python_wrapper-2.0.26.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.27": [
{
"comment_text": "",
"digests": {
"md5": "a34abe7bda0e9991f27a7d164af3811f",
"sha256": "03d031b1a4ae33e99606895998b2953c5665c37fe7db989e4b6a34465bf2c1ab"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.27-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a34abe7bda0e9991f27a7d164af3811f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 48182,
"upload_time": "2020-10-05T12:22:13",
"upload_time_iso_8601": "2020-10-05T12:22:13.036537Z",
"url": "https://files.pythonhosted.org/packages/5e/a2/61ac97225df9aef0ee1b0d4509c18fc435663d13e0211d347a34095e76d3/hkube_python_wrapper-2.0.27-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "0bd9d97c5277bf0e65ef039eaf82f12e",
"sha256": "8324ec1b1b1339941881723d1d66a904f9e086f9974cf67e8bb5b28d93cfc95f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.27.tar.gz",
"has_sig": false,
"md5_digest": "0bd9d97c5277bf0e65ef039eaf82f12e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31489,
"upload_time": "2020-10-05T12:22:14",
"upload_time_iso_8601": "2020-10-05T12:22:14.842778Z",
"url": "https://files.pythonhosted.org/packages/e1/a2/a442fbffd0a70e691c77452c2756b3ffd44735ce6558c3b5b460f68f572f/hkube_python_wrapper-2.0.27.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.28": [
{
"comment_text": "",
"digests": {
"md5": "f42b05fee40ace3f7f76f05bf7cc7d7b",
"sha256": "8da4133e1e7e46ab81705ed6980ee77b55bf2f1c6272ed224161ef4c8f7f3dd3"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.28-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f42b05fee40ace3f7f76f05bf7cc7d7b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 48133,
"upload_time": "2020-10-07T11:35:36",
"upload_time_iso_8601": "2020-10-07T11:35:36.721687Z",
"url": "https://files.pythonhosted.org/packages/55/59/9237beed9f2ac0ea5fe100947eb4fb2219b905bc12484aa4a565b9f6a88c/hkube_python_wrapper-2.0.28-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "234d89a24c020cb7011e608d2161c998",
"sha256": "d80d569b7e38c59b0d1fd7019ba2a303f040b1929f4a41da2ba1129566b1ea89"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.28.tar.gz",
"has_sig": false,
"md5_digest": "234d89a24c020cb7011e608d2161c998",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31449,
"upload_time": "2020-10-07T11:35:38",
"upload_time_iso_8601": "2020-10-07T11:35:38.120303Z",
"url": "https://files.pythonhosted.org/packages/6d/83/21bd81330f0fd645de2136f3fb7e4ec728d24817b5944e92b17a42bdeb9f/hkube_python_wrapper-2.0.28.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.29": [
{
"comment_text": "",
"digests": {
"md5": "9f4cda7ee2b64be1edf94f7a08c04acb",
"sha256": "a7e3c613ba6afb9c6df3c507767835c336b8c10707f23ff5034d94f83c467aa7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.29-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9f4cda7ee2b64be1edf94f7a08c04acb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 48137,
"upload_time": "2020-10-14T06:17:55",
"upload_time_iso_8601": "2020-10-14T06:17:55.466794Z",
"url": "https://files.pythonhosted.org/packages/ed/d2/1bf85283e5cd7c6090968982a327be2df2c08f1df70a8f453ac5d5b89f82/hkube_python_wrapper-2.0.29-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "aefce8cb7e09350c08c76f88f5e85700",
"sha256": "dea059b793d1ec1294640d08788dca4b831f8b869d584d8f05453fc975188965"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.29.tar.gz",
"has_sig": false,
"md5_digest": "aefce8cb7e09350c08c76f88f5e85700",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31408,
"upload_time": "2020-10-14T06:17:56",
"upload_time_iso_8601": "2020-10-14T06:17:56.912064Z",
"url": "https://files.pythonhosted.org/packages/7e/70/cccaeb4767316f24463e9d0e15000ec69987f3007d3a5445b29cb33cfab7/hkube_python_wrapper-2.0.29.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.3": [
{
"comment_text": "",
"digests": {
"md5": "866ef9f829f432650290468a1f0bd4db",
"sha256": "0810962a64ed7c562e35c48f5af05c0951c68630f3c3a2c76017912806d9d018"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "866ef9f829f432650290468a1f0bd4db",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38789,
"upload_time": "2020-06-24T15:09:32",
"upload_time_iso_8601": "2020-06-24T15:09:32.602839Z",
"url": "https://files.pythonhosted.org/packages/3f/4f/ae45191366ba05bb9f5aa1a7b749d1993f1318e3de14616d98b9073f6a99/hkube_python_wrapper-2.0.3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ea62c3f2c815e49e2be8f84fd7decd5e",
"sha256": "908c8752d0921f61db7bab928b10e3b60c2e2f59cf3ffdc0d76fb16b0305775c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.3.tar.gz",
"has_sig": false,
"md5_digest": "ea62c3f2c815e49e2be8f84fd7decd5e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23426,
"upload_time": "2020-06-24T15:09:33",
"upload_time_iso_8601": "2020-06-24T15:09:33.701488Z",
"url": "https://files.pythonhosted.org/packages/4a/cc/383d00e5ce3c3619f7bd8e5853d33667f583dab49f27786a704ae9ad0d07/hkube_python_wrapper-2.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.30": [
{
"comment_text": "",
"digests": {
"md5": "8e50b766095d708ebd32b0aae222c79b",
"sha256": "bb6cb23696f9e27eb73ffed3dfdec91aa811c97d6a66d88272bd20d3c77df745"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.30-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8e50b766095d708ebd32b0aae222c79b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 48286,
"upload_time": "2020-11-04T14:03:22",
"upload_time_iso_8601": "2020-11-04T14:03:22.282781Z",
"url": "https://files.pythonhosted.org/packages/f6/4e/d05b67f3ed1e22dd65a3e65660aa1c3633050651e1dc4d21ec6dea20b8bd/hkube_python_wrapper-2.0.30-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "839652b61af35273a963614b63572ea6",
"sha256": "fc559c1dac58f8e61a2b4181ba4f3c9d8f558648f0532828ebefc7f00c654dc0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.30.tar.gz",
"has_sig": false,
"md5_digest": "839652b61af35273a963614b63572ea6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31567,
"upload_time": "2020-11-04T14:03:23",
"upload_time_iso_8601": "2020-11-04T14:03:23.891840Z",
"url": "https://files.pythonhosted.org/packages/1e/e2/74afc5e0866aeda9117792af44547438ea4380b38c87854869dda54170cd/hkube_python_wrapper-2.0.30.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.31": [
{
"comment_text": "",
"digests": {
"md5": "dd871620a5d8f6e5c7c1d67649ed7a40",
"sha256": "31ad7efc086dd05ca9fcb96380d42f6f15ba3ad078ebb970c32abb074155448e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.31-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dd871620a5d8f6e5c7c1d67649ed7a40",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 56738,
"upload_time": "2021-01-04T13:43:01",
"upload_time_iso_8601": "2021-01-04T13:43:01.910985Z",
"url": "https://files.pythonhosted.org/packages/65/df/e1f447268fe22d5a2be89245cc80993de4434716d61d6129ce85ba31a0f1/hkube_python_wrapper-2.0.31-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f17ee93a1db40cfc4690bccee500de97",
"sha256": "c9c91d8b1a8dd2bdd7e15819cc80134c5bf144df6358f6a91783bfb6c37d85a7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.31.tar.gz",
"has_sig": false,
"md5_digest": "f17ee93a1db40cfc4690bccee500de97",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32102,
"upload_time": "2021-01-04T13:43:04",
"upload_time_iso_8601": "2021-01-04T13:43:04.602620Z",
"url": "https://files.pythonhosted.org/packages/6d/1f/021f5ce8b9ac4739e96bdd74644dba5c27aa90dc2f90ff341d6c55dec00d/hkube_python_wrapper-2.0.31.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.32": [
{
"comment_text": "",
"digests": {
"md5": "2c22517e22fa65ace39bc3da32fa69d4",
"sha256": "be5057c1d2ea28ade1c5526396de929c7026c8f20316c6b73e5ddd0c5fee2009"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.32-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2c22517e22fa65ace39bc3da32fa69d4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 56524,
"upload_time": "2021-01-05T09:38:22",
"upload_time_iso_8601": "2021-01-05T09:38:22.797794Z",
"url": "https://files.pythonhosted.org/packages/30/2e/8268c18bd7994a3a2de6afb8688f3ceb32fcef8f50f5a8cc67f965f8fa77/hkube_python_wrapper-2.0.32-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4e92834a3d66345a8fd57e1a8cc4937a",
"sha256": "980b16d276cce7a9a3f85a4672cf1ee8f3b3d37ea9fe24077c7352f64b3bdc7c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.32.tar.gz",
"has_sig": false,
"md5_digest": "4e92834a3d66345a8fd57e1a8cc4937a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31924,
"upload_time": "2021-01-05T09:38:24",
"upload_time_iso_8601": "2021-01-05T09:38:24.555262Z",
"url": "https://files.pythonhosted.org/packages/85/e6/c4a115937e2f5576b47a5836989ae3279bb7d532f294589fab29071e0d99/hkube_python_wrapper-2.0.32.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.33": [
{
"comment_text": "",
"digests": {
"md5": "bef527cd2a0946f3c83cecedb76ffea0",
"sha256": "7a12d60e7e94feff89abfd1ee050fa9597b80dab1c303897bd43747d0a1a100d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.33-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bef527cd2a0946f3c83cecedb76ffea0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 56519,
"upload_time": "2021-01-07T09:11:46",
"upload_time_iso_8601": "2021-01-07T09:11:46.875404Z",
"url": "https://files.pythonhosted.org/packages/43/cb/27e1970230888f767c7d2eadcd28e578003f186795f304ce6dce81da1f97/hkube_python_wrapper-2.0.33-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c937680efd165f7ed8e00434224a559a",
"sha256": "a28f13642f85523152be709e0570128e61fa024e549624b998ef513b65f5a246"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.33.tar.gz",
"has_sig": false,
"md5_digest": "c937680efd165f7ed8e00434224a559a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31925,
"upload_time": "2021-01-07T09:12:17",
"upload_time_iso_8601": "2021-01-07T09:12:17.941346Z",
"url": "https://files.pythonhosted.org/packages/d2/89/86df0283dfbe16e8ea3606847545ad7a09d5a35879bb338916bb229c1316/hkube_python_wrapper-2.0.33.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.34": [
{
"comment_text": "",
"digests": {
"md5": "1b94444ee770268d0d93bff11cba3201",
"sha256": "e8d75a4ffec532581aed6d0938c173188e22dd1cda9556d8f86c912530398558"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.34-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1b94444ee770268d0d93bff11cba3201",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 48791,
"upload_time": "2021-03-08T11:54:24",
"upload_time_iso_8601": "2021-03-08T11:54:24.664642Z",
"url": "https://files.pythonhosted.org/packages/dd/79/79d8f586fb982093ed9f8e672f600dfaccde875f183b2c81f0ccbead10ba/hkube_python_wrapper-2.0.34-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3796e49b5f3a2ff44eeb8a0189e6c315",
"sha256": "80a64fc1f81028d6d076e33e237d09990b1401f9ba2329b3247e86816839d1c8"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.34.tar.gz",
"has_sig": false,
"md5_digest": "3796e49b5f3a2ff44eeb8a0189e6c315",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32143,
"upload_time": "2021-03-08T11:54:26",
"upload_time_iso_8601": "2021-03-08T11:54:26.069843Z",
"url": "https://files.pythonhosted.org/packages/03/9b/7fcea1edaf105de11b702d705265dd045f02831c879bce2b45f1fa93c9be/hkube_python_wrapper-2.0.34.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.4": [
{
"comment_text": "",
"digests": {
"md5": "fd1ec6cff58d7ed5b1a65568eea9a990",
"sha256": "a95859138ebf3313c682e67927a02206376fd2fdce2066f4ec020cddf2530e65"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fd1ec6cff58d7ed5b1a65568eea9a990",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38892,
"upload_time": "2020-06-29T12:29:22",
"upload_time_iso_8601": "2020-06-29T12:29:22.834689Z",
"url": "https://files.pythonhosted.org/packages/1f/5e/630395c8c1ccbf144cd94d8225b2f72406420182572cbf7944bff4082206/hkube_python_wrapper-2.0.4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "00c89caa4ba18e9b758e2a89cc3cdeec",
"sha256": "5c17f9ca5a58e7ebb7a7c399bbc67df7a892ef23457498d4bea6565c7b4adfcd"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.4.tar.gz",
"has_sig": false,
"md5_digest": "00c89caa4ba18e9b758e2a89cc3cdeec",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23592,
"upload_time": "2020-06-29T12:29:23",
"upload_time_iso_8601": "2020-06-29T12:29:23.881568Z",
"url": "https://files.pythonhosted.org/packages/cf/e6/fb0a25550b0f9f0bd145311610df2b4fe74acdf04851d51accdf3e3dae18/hkube_python_wrapper-2.0.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.5": [
{
"comment_text": "",
"digests": {
"md5": "28d8e3f9f44994c21555829631095f67",
"sha256": "daf1f86123c91ac83765ebcb2e6bd541517c7905f15f8b1a9cc6562be4ac6767"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "28d8e3f9f44994c21555829631095f67",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38894,
"upload_time": "2020-07-06T05:36:26",
"upload_time_iso_8601": "2020-07-06T05:36:26.773805Z",
"url": "https://files.pythonhosted.org/packages/77/9e/491bd5926f22eac062bed7f5d21e46b0d056a450320eae2ca921270e8f44/hkube_python_wrapper-2.0.5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a4211dbde1a89d8afbcbb44e36019b7d",
"sha256": "74fa9c2673a479b12a9b17ca8a1ee2b99988c4e346c54788cbae2d92c0568ae6"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.5.tar.gz",
"has_sig": false,
"md5_digest": "a4211dbde1a89d8afbcbb44e36019b7d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23591,
"upload_time": "2020-07-06T05:36:27",
"upload_time_iso_8601": "2020-07-06T05:36:27.956059Z",
"url": "https://files.pythonhosted.org/packages/c6/c3/7daa33c9b162e4a09f913bae4b8f7a603934470983ba38f50ac0eab94126/hkube_python_wrapper-2.0.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.6": [
{
"comment_text": "",
"digests": {
"md5": "423354e44cff4dfe0c18eda2e13da3ae",
"sha256": "add1d041d72fdbbf3fa8435e0e0f610302f908a2fe242baa30c60f4bba1d7463"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "423354e44cff4dfe0c18eda2e13da3ae",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38896,
"upload_time": "2020-07-06T13:20:45",
"upload_time_iso_8601": "2020-07-06T13:20:45.664476Z",
"url": "https://files.pythonhosted.org/packages/0a/59/5bb552c42a0272d309b515fef54d6103b6f8e83b84bb729319e2b0fbbea6/hkube_python_wrapper-2.0.6-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "edf5cbaab171efd6eb02d675427c33ad",
"sha256": "7c61920b3b59e2896c0fdac1870e2ab9292a945ce7d5a19af8c67247ee812787"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.6.tar.gz",
"has_sig": false,
"md5_digest": "edf5cbaab171efd6eb02d675427c33ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23588,
"upload_time": "2020-07-06T13:20:46",
"upload_time_iso_8601": "2020-07-06T13:20:46.797927Z",
"url": "https://files.pythonhosted.org/packages/2f/56/65b5b4a56b2fd01c6e86bf9337046a59730b96051b6054231b9013fa752b/hkube_python_wrapper-2.0.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.7": [
{
"comment_text": "",
"digests": {
"md5": "09cf5680ab88d074915908d769b71cb2",
"sha256": "933376f221b44f3143debc9c9ee844091887d18129ee93f9f3e332fcc893fcef"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "09cf5680ab88d074915908d769b71cb2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38995,
"upload_time": "2020-08-02T11:33:43",
"upload_time_iso_8601": "2020-08-02T11:33:43.162543Z",
"url": "https://files.pythonhosted.org/packages/89/eb/630f03422db55069fa832e59f702a555c1e37aaa83c71e9d4f9c216552b1/hkube_python_wrapper-2.0.7-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "80fa03e5e3851c5b4e955588f23b1ea8",
"sha256": "0ad4fc53cec0df4e68a8d57b941af4da5cf8d8f50d1c841f4e1d2a7dc3693362"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.7.tar.gz",
"has_sig": false,
"md5_digest": "80fa03e5e3851c5b4e955588f23b1ea8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23796,
"upload_time": "2020-08-02T11:36:12",
"upload_time_iso_8601": "2020-08-02T11:36:12.469909Z",
"url": "https://files.pythonhosted.org/packages/28/4b/d8b2bb7a8791b9051e291b0a99d710bb7a2d40f9f19e02c4ff45fc190c0e/hkube_python_wrapper-2.0.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.7.dev1": [
{
"comment_text": "",
"digests": {
"md5": "4a261bf8d22911cf8d52be644dd21bfa",
"sha256": "3e032bb5a1817caf1ea53ca950ae46fe0384069bbac887bff9338348cdeaf050"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.7.dev1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4a261bf8d22911cf8d52be644dd21bfa",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39055,
"upload_time": "2020-08-02T11:32:00",
"upload_time_iso_8601": "2020-08-02T11:32:00.559273Z",
"url": "https://files.pythonhosted.org/packages/ba/f0/698ad471141caa3092f0be6cb9e3227bac272e63cb9d08fbdac544215647/hkube_python_wrapper-2.0.7.dev1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.0.7.dev2": [
{
"comment_text": "",
"digests": {
"md5": "10bbe45a1535793c31bc2dcb536a03a8",
"sha256": "6d390ebc541458da949c2d27dfee1d3e638e111d6f990f98d56a7d9237fd1447"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.7.dev2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "10bbe45a1535793c31bc2dcb536a03a8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39149,
"upload_time": "2020-08-03T07:17:36",
"upload_time_iso_8601": "2020-08-03T07:17:36.086780Z",
"url": "https://files.pythonhosted.org/packages/5c/68/7e3c92c89d8c2086508a60a40081165fe7925c3427a8eb765eb3ac451f60/hkube_python_wrapper-2.0.7.dev2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f52c035cb6c18b40f36e324b2358204c",
"sha256": "75ff20edff1621ac3a1c8884d8510367f88a8c88c8f34211194350e8d4be6791"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.7.dev2.tar.gz",
"has_sig": false,
"md5_digest": "f52c035cb6c18b40f36e324b2358204c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23868,
"upload_time": "2020-08-03T07:17:39",
"upload_time_iso_8601": "2020-08-03T07:17:39.091241Z",
"url": "https://files.pythonhosted.org/packages/45/e8/91cbb96a57e5fe05c95caad6018b4ca470f8019ab8f0710fb86cf18fc7b8/hkube_python_wrapper-2.0.7.dev2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.7a1": [
{
"comment_text": "",
"digests": {
"md5": "fb8eba8e18875070402c3a2d9580fc10",
"sha256": "27818dc308838c4a66ee1d0b0d49f9cf9ab12602071dd9fc096eb9ef7bb20de5"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.7a1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fb8eba8e18875070402c3a2d9580fc10",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39023,
"upload_time": "2020-08-02T11:13:15",
"upload_time_iso_8601": "2020-08-02T11:13:15.318803Z",
"url": "https://files.pythonhosted.org/packages/19/fe/bb656a12ac3940994de6ed062b73422114a505c8ab31d02549dd06d8a631/hkube_python_wrapper-2.0.7a1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.0.7a2": [
{
"comment_text": "",
"digests": {
"md5": "2e02c4080a1e677860f0ed5de59c813b",
"sha256": "b5bb7b1895167a4d7cce5b6c480732b62cddf62b6adffcca26184c0c06d415a4"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.7a2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2e02c4080a1e677860f0ed5de59c813b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39023,
"upload_time": "2020-08-02T11:24:19",
"upload_time_iso_8601": "2020-08-02T11:24:19.018846Z",
"url": "https://files.pythonhosted.org/packages/8f/23/5d9560ecc7a6fcf2e926d39a577804fb76f7ed76da307649ec5087293a03/hkube_python_wrapper-2.0.7a2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.0.8": [
{
"comment_text": "",
"digests": {
"md5": "6634f0942a78f37de1df6a43c870612b",
"sha256": "d49ebe2c51f1564e10a6d6b06eea9c89ad07d2edaf0bd2a57306f700e06c235a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6634f0942a78f37de1df6a43c870612b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39129,
"upload_time": "2020-08-03T08:54:50",
"upload_time_iso_8601": "2020-08-03T08:54:50.442997Z",
"url": "https://files.pythonhosted.org/packages/56/38/044a617072d48248cfe5d6cc8181d500fe304d7642ab642c0f11f7198775/hkube_python_wrapper-2.0.8-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "76f0febd205b5970e27168c74c817dbe",
"sha256": "0450dd4de74cc22799c5bf9e6be72bbb9d5c51adbd292189cb072555ded1ed46"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.8.tar.gz",
"has_sig": false,
"md5_digest": "76f0febd205b5970e27168c74c817dbe",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23751,
"upload_time": "2020-08-03T08:54:52",
"upload_time_iso_8601": "2020-08-03T08:54:52.554689Z",
"url": "https://files.pythonhosted.org/packages/70/d1/788b258c2e903c9dcd588c6d4547305f2a17f5719c393b90def63d9c8e2e/hkube_python_wrapper-2.0.8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.0.9": [
{
"comment_text": "",
"digests": {
"md5": "0effebac12869d1152b3d8c722d0c566",
"sha256": "90f00a40540a01920f1e77dac4fcdef6151c2206e4d6fd8fd26e3c50fb04e424"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0effebac12869d1152b3d8c722d0c566",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39126,
"upload_time": "2020-08-11T06:44:16",
"upload_time_iso_8601": "2020-08-11T06:44:16.678906Z",
"url": "https://files.pythonhosted.org/packages/73/3f/02612d4a18d7a2c6fac29a1edfe255db6ec7f9b278a9f943e3230408c4b2/hkube_python_wrapper-2.0.9-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9dd386b9c50abc6ce5e4e8b9b8260a38",
"sha256": "f38f5c733761f3ae0952fcdd7e7cad22d6ea5df3f4dab8986260cc1f02513999"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.0.9.tar.gz",
"has_sig": false,
"md5_digest": "9dd386b9c50abc6ce5e4e8b9b8260a38",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23746,
"upload_time": "2020-08-11T06:44:18",
"upload_time_iso_8601": "2020-08-11T06:44:18.147416Z",
"url": "https://files.pythonhosted.org/packages/bc/35/a0dca656fddce2c4344074a807fa45b3523b5dabab569cda5aa4d14ce717/hkube_python_wrapper-2.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "a9ee58b5248202f278621eccb391c78a",
"sha256": "aab3370f9770f9d0de0d7886453d0f39ee3754790e5ab65ca7e6472880eedd3d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a9ee58b5248202f278621eccb391c78a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67418,
"upload_time": "2021-04-19T12:45:21",
"upload_time_iso_8601": "2021-04-19T12:45:21.833599Z",
"url": "https://files.pythonhosted.org/packages/e1/16/bd581a74f060fd72366df5b7493c471a23305105cb2c4f95c2270f305d3e/hkube_python_wrapper-2.1.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "846a829b321f37afa7ebb5fe0f59250e",
"sha256": "67971f4d3dde20565e91f926a79a54532c480699a20f9feeb66aeaf1a39b47e6"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "846a829b321f37afa7ebb5fe0f59250e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43953,
"upload_time": "2021-04-19T12:45:23",
"upload_time_iso_8601": "2021-04-19T12:45:23.389471Z",
"url": "https://files.pythonhosted.org/packages/50/da/0b7480bd6adc6c0fd1c48cb7523148f0a2dff6a299772e68c7745359ad34/hkube_python_wrapper-2.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev13": [
{
"comment_text": "",
"digests": {
"md5": "28332f504c9739fc619cd8ad82ac1605",
"sha256": "2e502bcdaf977858f5cb95db147d7641cc599ad40db65366b55e8d9e0a25642d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "28332f504c9739fc619cd8ad82ac1605",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67992,
"upload_time": "2021-01-19T13:49:56",
"upload_time_iso_8601": "2021-01-19T13:49:56.680549Z",
"url": "https://files.pythonhosted.org/packages/48/e3/258e2ec5b0ba4d6af3e865ad3830885c36bd3a7045ea5ce3f1f96a597210/hkube_python_wrapper-2.1.0.1.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev16": [
{
"comment_text": "",
"digests": {
"md5": "673e8b2288b9d2393c27861c06111290",
"sha256": "cade0d9ff0bde02b47930cad73885510a65642f7268d62793c261c2e4e6ef6d3"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "673e8b2288b9d2393c27861c06111290",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68108,
"upload_time": "2021-01-24T15:19:56",
"upload_time_iso_8601": "2021-01-24T15:19:56.918138Z",
"url": "https://files.pythonhosted.org/packages/4e/82/fcbc77493d9a5bc009f0795bc8eee5dbf92427a2ae7e44c4c1cf2d0ca438/hkube_python_wrapper-2.1.0.1.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev17": [
{
"comment_text": "",
"digests": {
"md5": "3ac581bb294242606b58e7262fd7a0d5",
"sha256": "b850158ad977c3490b60dde019d3cfb80f5f77f7afb614caad57127ca7ed2b91"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3ac581bb294242606b58e7262fd7a0d5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68398,
"upload_time": "2021-02-08T09:49:18",
"upload_time_iso_8601": "2021-02-08T09:49:18.919241Z",
"url": "https://files.pythonhosted.org/packages/8f/80/63e8f66dd6dd7ac7e8080d8c79147b769547f2327cde41fe2f727b4e7f0a/hkube_python_wrapper-2.1.0.1.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev18": [
{
"comment_text": "",
"digests": {
"md5": "bff27362a4f3d3890942a3e0123b8d92",
"sha256": "c30a1b1292877d8cb88187215a1bc2dae65cbfed8c09b823393e7c9f93bf6c58"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bff27362a4f3d3890942a3e0123b8d92",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68445,
"upload_time": "2021-02-10T14:51:35",
"upload_time_iso_8601": "2021-02-10T14:51:35.143798Z",
"url": "https://files.pythonhosted.org/packages/9b/05/af80d778e2a5217328460b2fd11ce9f6199d1ebcdd3af9ded566a10c6726/hkube_python_wrapper-2.1.0.1.dev18-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev20": [
{
"comment_text": "",
"digests": {
"md5": "1ed4abab8d2ad39bfcddce309b368e2a",
"sha256": "9e58fddd94679df1cf87baeae2e52c7bdc00b517478a195253f10e1cb180b525"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev20-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1ed4abab8d2ad39bfcddce309b368e2a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70014,
"upload_time": "2021-02-14T09:21:12",
"upload_time_iso_8601": "2021-02-14T09:21:12.044981Z",
"url": "https://files.pythonhosted.org/packages/89/46/a45e9bb4edb489aecd5b6628c78a3189bec2256845c357bdd4d242a96a6d/hkube_python_wrapper-2.1.0.1.dev20-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev21": [
{
"comment_text": "",
"digests": {
"md5": "18f23c2758ac5ca9221dc5ddb2f4c5f5",
"sha256": "219c25005f9b8fcf399325f624678e9f0bc5e838d3a4e25ef2779462080c272d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "18f23c2758ac5ca9221dc5ddb2f4c5f5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70900,
"upload_time": "2021-02-16T11:10:47",
"upload_time_iso_8601": "2021-02-16T11:10:47.853417Z",
"url": "https://files.pythonhosted.org/packages/ab/e5/de073c4847ff4617e0747ff63e9260ad997c3b0bd7dd523cb086b9ad4bb6/hkube_python_wrapper-2.1.0.1.dev21-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev22": [
{
"comment_text": "",
"digests": {
"md5": "d5dd73796d40fbae3a32b1042e1a1bec",
"sha256": "900888e0499cbe18a3738fbb9b3b7dfec4a3fb2c3a3bc3d475f4196912520409"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev22-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d5dd73796d40fbae3a32b1042e1a1bec",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67995,
"upload_time": "2021-02-18T11:33:12",
"upload_time_iso_8601": "2021-02-18T11:33:12.448584Z",
"url": "https://files.pythonhosted.org/packages/d6/1a/c4797ad5ed11dc2250fdddc473d570436ce042c89f4e8440056a07634554/hkube_python_wrapper-2.1.0.1.dev22-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev23": [
{
"comment_text": "",
"digests": {
"md5": "6fa8ed4febb8fe34927ddf5e5c43bb34",
"sha256": "b8a9b7f2cdcc6d1d4e38b0274a9458a65caeecf8cc97065250be9c944dddc039"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev23-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6fa8ed4febb8fe34927ddf5e5c43bb34",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68058,
"upload_time": "2021-02-21T15:53:18",
"upload_time_iso_8601": "2021-02-21T15:53:18.266739Z",
"url": "https://files.pythonhosted.org/packages/8e/36/a357048554fea0054b939540669268736040e1620afe71dc0f9d0508fd4c/hkube_python_wrapper-2.1.0.1.dev23-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev25": [
{
"comment_text": "",
"digests": {
"md5": "4f0f9ab9c3fa26539b1168a3835058e5",
"sha256": "a04e091d50c6fef25b064f17fd2c0c9e222107b5670c0c6471ecd8d530506511"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4f0f9ab9c3fa26539b1168a3835058e5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68056,
"upload_time": "2021-02-23T09:54:42",
"upload_time_iso_8601": "2021-02-23T09:54:42.639693Z",
"url": "https://files.pythonhosted.org/packages/ee/ae/4d363667b6f3b6d26f9d8839f981a5a729b7448a22c8cc194643d9ff6221/hkube_python_wrapper-2.1.0.1.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev30": [
{
"comment_text": "",
"digests": {
"md5": "68851d01d4d64f935aff374de63ffc51",
"sha256": "ee048a6d2ede172b1a3a89ecb1f6719cd96f3eca0e09151aba30f262cfa657f0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev30-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "68851d01d4d64f935aff374de63ffc51",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67630,
"upload_time": "2021-03-02T15:55:06",
"upload_time_iso_8601": "2021-03-02T15:55:06.867419Z",
"url": "https://files.pythonhosted.org/packages/38/1a/0dd1af88c1a4a8c2dfa4001d1ae4397b1f143cb71533abff3fadf46bb372/hkube_python_wrapper-2.1.0.1.dev30-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev31": [
{
"comment_text": "",
"digests": {
"md5": "87bb1652f2a9fc1fc6945bcedf684a94",
"sha256": "ef2ccf417bb25d2936ab59ab9213e064c8714924c6202cfa6867f5b86910142d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev31-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "87bb1652f2a9fc1fc6945bcedf684a94",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66646,
"upload_time": "2021-03-03T06:27:19",
"upload_time_iso_8601": "2021-03-03T06:27:19.373693Z",
"url": "https://files.pythonhosted.org/packages/44/cd/c61eef70d21692dbb0f0906babe8842997d5504200ce85c29d361cde783f/hkube_python_wrapper-2.1.0.1.dev31-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev32": [
{
"comment_text": "",
"digests": {
"md5": "68796cf22bb9f3bed7faec475f15d456",
"sha256": "b805d97c575eca4caf78926a08f8110f00605c69e42053b00728fe098074a3b4"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev32-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "68796cf22bb9f3bed7faec475f15d456",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66647,
"upload_time": "2021-03-03T06:46:50",
"upload_time_iso_8601": "2021-03-03T06:46:50.450737Z",
"url": "https://files.pythonhosted.org/packages/2f/9b/3a8689478eb7df545585ce862d4f52e3d69d13e59a88dab663896b638143/hkube_python_wrapper-2.1.0.1.dev32-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev33": [
{
"comment_text": "",
"digests": {
"md5": "a84df4f85dc8743ad0be6a8082c88fdf",
"sha256": "76437595120b14a52bad93d85cb3625a9f01e35d0e801ddd4be5254bcf6c0e92"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev33-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a84df4f85dc8743ad0be6a8082c88fdf",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66647,
"upload_time": "2021-03-03T07:03:02",
"upload_time_iso_8601": "2021-03-03T07:03:02.756091Z",
"url": "https://files.pythonhosted.org/packages/15/ff/4bad3b0885909be8f739e7c1643f300318a1aae587916f7754efa00b693e/hkube_python_wrapper-2.1.0.1.dev33-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev34": [
{
"comment_text": "",
"digests": {
"md5": "69a73e55e4a95e8281d3575a23375271",
"sha256": "5566909e53c6a9052a48d821b91b0be1280fadeb1277d065bb0ae4d8b7e8ac97"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev34-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "69a73e55e4a95e8281d3575a23375271",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66665,
"upload_time": "2021-03-03T08:48:39",
"upload_time_iso_8601": "2021-03-03T08:48:39.878522Z",
"url": "https://files.pythonhosted.org/packages/bf/44/a6049643fd473d7564f8e878606564cba56416b5b50de56925ae2ea21a6f/hkube_python_wrapper-2.1.0.1.dev34-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev35": [
{
"comment_text": "",
"digests": {
"md5": "2df14fd688dbb37b618ff1bb9ba5f77f",
"sha256": "79d3e859ad7101ff1ff11d1d526d0ef027a0e3043972f34b13417ec2438c83bf"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev35-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2df14fd688dbb37b618ff1bb9ba5f77f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66532,
"upload_time": "2021-03-03T11:06:53",
"upload_time_iso_8601": "2021-03-03T11:06:53.436969Z",
"url": "https://files.pythonhosted.org/packages/3a/9a/90419165d24683ccbd822fddf3a473a563c8f769bffc8e4e1802a8875fc8/hkube_python_wrapper-2.1.0.1.dev35-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev36": [
{
"comment_text": "",
"digests": {
"md5": "79d201d90abe9959a0878474cf321de7",
"sha256": "8ce5b506e2a05d77b30faa866c906e4ec400e9d1077a3a6e00ccb840f617d65e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev36-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "79d201d90abe9959a0878474cf321de7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67340,
"upload_time": "2021-03-03T14:31:52",
"upload_time_iso_8601": "2021-03-03T14:31:52.862507Z",
"url": "https://files.pythonhosted.org/packages/79/3d/f69c39e048f9aaca57a400553513d971ea91b3c476d8e87fa19d83b4c034/hkube_python_wrapper-2.1.0.1.dev36-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev37": [
{
"comment_text": "",
"digests": {
"md5": "042c0c05d02a2542ae426a04afe9be1c",
"sha256": "1be857c40d20dad7246ade2217be3abbe2ca1719703b92d7ef69be0ab6ca3dd3"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev37-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "042c0c05d02a2542ae426a04afe9be1c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67341,
"upload_time": "2021-03-03T14:50:25",
"upload_time_iso_8601": "2021-03-03T14:50:25.030293Z",
"url": "https://files.pythonhosted.org/packages/4d/09/cf92090c1336ab371a6aef91ceee711432fc426ba8fb3365bab6359bbd5f/hkube_python_wrapper-2.1.0.1.dev37-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev38": [
{
"comment_text": "",
"digests": {
"md5": "4c3dc99f6673a63c5bdf5bc2ac28215d",
"sha256": "0005f6706cf8a5f27ff7d310b5523d2ac23156c13ad8c18a186f20769f4cb251"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev38-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4c3dc99f6673a63c5bdf5bc2ac28215d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67396,
"upload_time": "2021-03-04T10:35:56",
"upload_time_iso_8601": "2021-03-04T10:35:56.946420Z",
"url": "https://files.pythonhosted.org/packages/73/61/6bb9216d170727cd92a747ae87b508401bf0f9d73ecdf46cf7aea7259766/hkube_python_wrapper-2.1.0.1.dev38-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev39": [
{
"comment_text": "",
"digests": {
"md5": "7c59cd427d2eef17904446ab7189b655",
"sha256": "26c5ecb5441c056bd0c5069f6f4ba0b0c217dd94b73d4e747f2bf6e1582d482f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev39-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7c59cd427d2eef17904446ab7189b655",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67396,
"upload_time": "2021-03-04T12:08:18",
"upload_time_iso_8601": "2021-03-04T12:08:18.657655Z",
"url": "https://files.pythonhosted.org/packages/29/5e/33f0eda50202e0ba1e6fe8e82869da2189eaa53cef975fb17190bdd7ee9c/hkube_python_wrapper-2.1.0.1.dev39-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.1.dev40": [
{
"comment_text": "",
"digests": {
"md5": "cd1b4a5fffb42f8468c5e627bd505602",
"sha256": "652ad0579687e5563735218f7c931fcd30fd174188ed944edd2e035569aa3d12"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.1.dev40-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cd1b4a5fffb42f8468c5e627bd505602",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67354,
"upload_time": "2021-03-04T12:34:59",
"upload_time_iso_8601": "2021-03-04T12:34:59.264305Z",
"url": "https://files.pythonhosted.org/packages/59/4d/36a663ad2afc19f21728723b3d77e21ea7021482bea7198d7fd915f78662/hkube_python_wrapper-2.1.0.1.dev40-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.10.dev16": [
{
"comment_text": "",
"digests": {
"md5": "c6127a2f7d69418d96469026f4ef5b56",
"sha256": "6b6bcc1c9132b761b36a2613ddae69db1165f1166ab60aa35bcbc3e06af721cc"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.10.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c6127a2f7d69418d96469026f4ef5b56",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68576,
"upload_time": "2021-02-02T15:21:30",
"upload_time_iso_8601": "2021-02-02T15:21:30.145954Z",
"url": "https://files.pythonhosted.org/packages/e0/38/634646bc290502cdb71eecc9fee949efecce90494746d2560ca38cd664c9/hkube_python_wrapper-2.1.0.10.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.10.dev17": [
{
"comment_text": "",
"digests": {
"md5": "fbcaca4369a0b0ad48a4c1bed00994e3",
"sha256": "496e59956abf9c4943d74201d64b0d38caa8d748f12277cbe66c8a521fbb3798"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.10.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fbcaca4369a0b0ad48a4c1bed00994e3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68452,
"upload_time": "2021-02-09T17:05:49",
"upload_time_iso_8601": "2021-02-09T17:05:49.087059Z",
"url": "https://files.pythonhosted.org/packages/70/f3/1fd54753f48b4f2d1037e62d46c878aeaa9a44c9d09f73e8edd5a59e430e/hkube_python_wrapper-2.1.0.10.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.10.dev25": [
{
"comment_text": "",
"digests": {
"md5": "59028f7860fa9d4dfce8357d13eba525",
"sha256": "ad93230b65bf235119ed87fecc1087fd5ed1d9f96a8c6ac626e882550d732642"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.10.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "59028f7860fa9d4dfce8357d13eba525",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68354,
"upload_time": "2021-03-01T10:11:45",
"upload_time_iso_8601": "2021-03-01T10:11:45.886325Z",
"url": "https://files.pythonhosted.org/packages/e0/ab/0f7ce632007181701b77773ee7f35cdc3a7a3d33a533664c5f91ee992ea4/hkube_python_wrapper-2.1.0.10.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.100.dev33": [
{
"comment_text": "",
"digests": {
"md5": "0fe78ab22cff9cc3b97171e48e4876b2",
"sha256": "85ae9e6101fb3959eaf28b31404a11357fe2a23baa8267e747f133172cfb3e12"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.100.dev33-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0fe78ab22cff9cc3b97171e48e4876b2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68916,
"upload_time": "2021-03-17T11:13:11",
"upload_time_iso_8601": "2021-03-17T11:13:11.363732Z",
"url": "https://files.pythonhosted.org/packages/d0/88/45864d8f4535213a32724ccaae8834d786c037375dc08c3e72a10b1f5a19/hkube_python_wrapper-2.1.0.100.dev33-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.101.dev33": [
{
"comment_text": "",
"digests": {
"md5": "34ed89aedd35e1965d1db027f4996d00",
"sha256": "5f85e7b0dd5a0d2dcffe252fb66f4598f8e0d31fe3771de37e10cd70ecef9a1d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.101.dev33-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "34ed89aedd35e1965d1db027f4996d00",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69664,
"upload_time": "2021-03-17T12:37:48",
"upload_time_iso_8601": "2021-03-17T12:37:48.158785Z",
"url": "https://files.pythonhosted.org/packages/6a/c7/dae282aa370b644a98f7bfffdfa9e4525865f68f61e884c6f75acf6d4031/hkube_python_wrapper-2.1.0.101.dev33-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.11.dev16": [
{
"comment_text": "",
"digests": {
"md5": "3ce867cbac23acb529581e40ee21ea4b",
"sha256": "7c97a4db3a8126844ec8dfc3f3c7ac48d7d26f1a436cb381a05d4e957c7fa5d0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.11.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3ce867cbac23acb529581e40ee21ea4b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68607,
"upload_time": "2021-02-03T10:35:38",
"upload_time_iso_8601": "2021-02-03T10:35:38.038843Z",
"url": "https://files.pythonhosted.org/packages/f4/83/ead76930e4d2158579c5c918267d93291907dd4472b8482ca7a136f9f30b/hkube_python_wrapper-2.1.0.11.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.11.dev17": [
{
"comment_text": "",
"digests": {
"md5": "4545437a109d9a6e312c2a6ac618089e",
"sha256": "13650d5be6e6b963c5f33ad4f2c82b823110a41c9eb16d6f1dd0f924c8ed79c6"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.11.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4545437a109d9a6e312c2a6ac618089e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68455,
"upload_time": "2021-02-10T05:00:03",
"upload_time_iso_8601": "2021-02-10T05:00:03.457378Z",
"url": "https://files.pythonhosted.org/packages/b8/94/d2df565ecdb30940d8ec77e5aa46b4ee637afe11025ec1676a993414db6c/hkube_python_wrapper-2.1.0.11.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev13": [
{
"comment_text": "",
"digests": {
"md5": "786961d007813debfb06cdafeb29228a",
"sha256": "f13989e3542a080afa79a059e7342bb282cdf1df4b016534b145c2b78e8a8022"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "786961d007813debfb06cdafeb29228a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68003,
"upload_time": "2021-01-19T14:23:57",
"upload_time_iso_8601": "2021-01-19T14:23:57.366410Z",
"url": "https://files.pythonhosted.org/packages/1b/40/479413465733528d0056fcfe75e4e06a9b2d3614b745245e1e84789f0198/hkube_python_wrapper-2.1.0.2.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev16": [
{
"comment_text": "",
"digests": {
"md5": "fd315377368081d58deac9c40398ebf0",
"sha256": "bc84d41c353f9759f2402c84218b32126cbe3fe79dee52e667891f382921cd6b"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fd315377368081d58deac9c40398ebf0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68631,
"upload_time": "2021-01-27T09:25:14",
"upload_time_iso_8601": "2021-01-27T09:25:14.152765Z",
"url": "https://files.pythonhosted.org/packages/07/66/689deec04b8bcf55779f154e2c00b4d4385487daf2c5bb4b910eee665487/hkube_python_wrapper-2.1.0.2.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev17": [
{
"comment_text": "",
"digests": {
"md5": "065ba4ac85b0fd1d4106e6ae21b704d2",
"sha256": "14b78a1c4eaf8276cfbfe37e391c46c751f57e86a5e2e5995f3e439b3ffc4e7f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "065ba4ac85b0fd1d4106e6ae21b704d2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68407,
"upload_time": "2021-02-08T10:31:48",
"upload_time_iso_8601": "2021-02-08T10:31:48.779619Z",
"url": "https://files.pythonhosted.org/packages/8f/90/06394960b70c082b7dfe17116aa2e7236e9f667457b693fd5d0c3af3a539/hkube_python_wrapper-2.1.0.2.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev18": [
{
"comment_text": "",
"digests": {
"md5": "f0c7df5fa3a7a20bce65c5aa3aab57fd",
"sha256": "9e4da95dde6bbe6574eeeef4d850cc56a1671d155b648197240c21bd1ec3439d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f0c7df5fa3a7a20bce65c5aa3aab57fd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68483,
"upload_time": "2021-02-10T15:26:22",
"upload_time_iso_8601": "2021-02-10T15:26:22.755294Z",
"url": "https://files.pythonhosted.org/packages/42/d7/234eb53f019f6ff7d884c1776e5823a21d4693a2ff6bddcf401e6358e036/hkube_python_wrapper-2.1.0.2.dev18-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev20": [
{
"comment_text": "",
"digests": {
"md5": "b66118eb5220b83bf0964533580aee4f",
"sha256": "0292500f4ebf0a98595a71bf12c7dc995985b724b1757dcfb1d2501aa558ba08"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev20-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b66118eb5220b83bf0964533580aee4f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70028,
"upload_time": "2021-02-14T09:42:22",
"upload_time_iso_8601": "2021-02-14T09:42:22.224425Z",
"url": "https://files.pythonhosted.org/packages/e6/3c/6329bf2600effad8730a31615f2f32720ec8093f546c08ca477523ea2973/hkube_python_wrapper-2.1.0.2.dev20-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev21": [
{
"comment_text": "",
"digests": {
"md5": "5783261cd8f3630eddf738c3bf97c55a",
"sha256": "d240defc44c97263d5022b724198e1b63dac5bda98bef7368eb6473004c84d78"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5783261cd8f3630eddf738c3bf97c55a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70897,
"upload_time": "2021-02-16T11:25:19",
"upload_time_iso_8601": "2021-02-16T11:25:19.718104Z",
"url": "https://files.pythonhosted.org/packages/7e/07/11a0ab4937f967e994374897a7295eb2e91284569db03be45df5e158e649/hkube_python_wrapper-2.1.0.2.dev21-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev25": [
{
"comment_text": "",
"digests": {
"md5": "743352b43e806a0118cd9feed23352c2",
"sha256": "8e59eff40e4ab4ae852aadcfba1925f920373cc237d5f3e23008a7fdbbcf666e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "743352b43e806a0118cd9feed23352c2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68119,
"upload_time": "2021-02-23T15:28:10",
"upload_time_iso_8601": "2021-02-23T15:28:10.724705Z",
"url": "https://files.pythonhosted.org/packages/e7/59/42446ea0dd0e27a29df0bcc8a7729e6562c2bdf8eb07d0bb13b571cfec34/hkube_python_wrapper-2.1.0.2.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev32": [
{
"comment_text": "",
"digests": {
"md5": "dc69364945c8dfdf07d1db2b528fd264",
"sha256": "6a5686548d7955e536325fd18bb058782ab7aecec4147f6a56ff42b391865e29"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev32-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dc69364945c8dfdf07d1db2b528fd264",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70218,
"upload_time": "2021-03-15T06:09:13",
"upload_time_iso_8601": "2021-03-15T06:09:13.737517Z",
"url": "https://files.pythonhosted.org/packages/7c/bc/0d43f3bcdc07a3ccebf7ab48f234059aad5be747e47e3cc77de6b758e57b/hkube_python_wrapper-2.1.0.2.dev32-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.2.dev40": [
{
"comment_text": "",
"digests": {
"md5": "63edc1f74732afab5b46c1e78e93e273",
"sha256": "01b5cd967ca1128b53898c3c70be48556941dc0d237a1e875299a24ff532df81"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.2.dev40-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "63edc1f74732afab5b46c1e78e93e273",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67049,
"upload_time": "2021-03-04T14:50:51",
"upload_time_iso_8601": "2021-03-04T14:50:51.939111Z",
"url": "https://files.pythonhosted.org/packages/74/e5/39cef26ed160e1b7388e5a3f85f83905b213b1e30b88ede9e8f33f3ade4f/hkube_python_wrapper-2.1.0.2.dev40-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev13": [
{
"comment_text": "",
"digests": {
"md5": "4c7bb8745e34cc36ad8f9378b48618f5",
"sha256": "928235a8c59157dfe7b0712a125ab0995e531c347c7416149c07a7bb0a566aed"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4c7bb8745e34cc36ad8f9378b48618f5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68058,
"upload_time": "2021-01-19T15:13:00",
"upload_time_iso_8601": "2021-01-19T15:13:00.274570Z",
"url": "https://files.pythonhosted.org/packages/ed/75/99327b72fb6b79d69940ea61977a80fdba09502d6e7ad172befa3b4ade94/hkube_python_wrapper-2.1.0.3.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev16": [
{
"comment_text": "",
"digests": {
"md5": "b6ba498cacea48fe5af11edd4c6d00cb",
"sha256": "6b5547434b72bc865ff1b72b7b8db9f25d7acbcb6f6b83e74a3364a59f9e678e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b6ba498cacea48fe5af11edd4c6d00cb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68683,
"upload_time": "2021-01-27T11:43:28",
"upload_time_iso_8601": "2021-01-27T11:43:28.718148Z",
"url": "https://files.pythonhosted.org/packages/f5/e3/03bd5cb680c2b5b3d68adbb8556d020733b964b6e896230144f218fc4d98/hkube_python_wrapper-2.1.0.3.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev17": [
{
"comment_text": "",
"digests": {
"md5": "76ea3c5e534edaf486d1b2456a087bf3",
"sha256": "fee8cafffa139165cf4fa212e2fbf12888353fd585b18bf9ef2d8fc5eb830218"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "76ea3c5e534edaf486d1b2456a087bf3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68414,
"upload_time": "2021-02-08T11:04:16",
"upload_time_iso_8601": "2021-02-08T11:04:16.155038Z",
"url": "https://files.pythonhosted.org/packages/6b/32/55a650394099edae1dbc4586c651ea22599406e41dd3659793e17f60e544/hkube_python_wrapper-2.1.0.3.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev18": [
{
"comment_text": "",
"digests": {
"md5": "d0f57b6af8c2fc0a8f01850a2413f18c",
"sha256": "c129dcb7d813d3db8bae3367df1e8f1ae732ee6b9ddfde3501ae691ee8dadb17"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d0f57b6af8c2fc0a8f01850a2413f18c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68479,
"upload_time": "2021-02-10T15:54:07",
"upload_time_iso_8601": "2021-02-10T15:54:07.621293Z",
"url": "https://files.pythonhosted.org/packages/f4/c0/1c754619c3d85277a84f7a1881fef902f1838d9639c63ebd1323d1c8e46c/hkube_python_wrapper-2.1.0.3.dev18-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev20": [
{
"comment_text": "",
"digests": {
"md5": "e959cda10240a75a27f76048ccc04519",
"sha256": "fb2348c192134f1c3bf58ca286e9f02c1ade00a6d20eb06ee095040e3ada9389"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev20-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e959cda10240a75a27f76048ccc04519",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70080,
"upload_time": "2021-02-14T11:00:53",
"upload_time_iso_8601": "2021-02-14T11:00:53.705974Z",
"url": "https://files.pythonhosted.org/packages/89/6a/ffb8b37afca0c874f6ef0931858ae9090f17df015a343b244dee9373fd89/hkube_python_wrapper-2.1.0.3.dev20-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev25": [
{
"comment_text": "",
"digests": {
"md5": "eb8c3cf2aedacd53fe32bade6df02c80",
"sha256": "d3a42cf8f5c96706ed6dab03be6a9488ec1d378beed430dbb53a33590a577891"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "eb8c3cf2aedacd53fe32bade6df02c80",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68130,
"upload_time": "2021-02-23T15:52:19",
"upload_time_iso_8601": "2021-02-23T15:52:19.050938Z",
"url": "https://files.pythonhosted.org/packages/32/56/b45c2445938a6b62fe1700ac4daf3b4163844e14711e049cacd8c2dc99b5/hkube_python_wrapper-2.1.0.3.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev32": [
{
"comment_text": "",
"digests": {
"md5": "1798b352f2cbfd15a98b28208615a6b1",
"sha256": "97c2a6963c2a0f48c3497b8d40582ecc144c9733d6582ed57bb261cc5302d61a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev32-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1798b352f2cbfd15a98b28208615a6b1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70266,
"upload_time": "2021-03-15T12:54:38",
"upload_time_iso_8601": "2021-03-15T12:54:38.201442Z",
"url": "https://files.pythonhosted.org/packages/79/3d/cc1b9e5aaffea7296f8ad78321f153011647292dbc493d432be57aa35554/hkube_python_wrapper-2.1.0.3.dev32-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev40": [
{
"comment_text": "",
"digests": {
"md5": "61219400bb9eebe8380766c0f251c1c5",
"sha256": "7699849666adf80beace32778d815fbfca7749dfa543807771f9d27c191e50f1"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev40-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "61219400bb9eebe8380766c0f251c1c5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68325,
"upload_time": "2021-03-09T07:27:45",
"upload_time_iso_8601": "2021-03-09T07:27:45.448659Z",
"url": "https://files.pythonhosted.org/packages/ae/da/4251c06345c9233cc85704ea933b96757619d131e450078f9d0d08df981a/hkube_python_wrapper-2.1.0.3.dev40-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev41": [
{
"comment_text": "",
"digests": {
"md5": "506344955a500d9999c04700bbfe17e9",
"sha256": "190eae006d3f483702b3ce98f6ef0cd6942a75141e62d55f4559c7c614248543"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev41-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "506344955a500d9999c04700bbfe17e9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68362,
"upload_time": "2021-03-09T10:04:32",
"upload_time_iso_8601": "2021-03-09T10:04:32.263584Z",
"url": "https://files.pythonhosted.org/packages/ad/9a/deb96d54d3ab65b352f7ec7a6701dc9913242521a546ee81958bd44c4ffa/hkube_python_wrapper-2.1.0.3.dev41-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev42": [
{
"comment_text": "",
"digests": {
"md5": "1808157d28c3d8f229cf427edf619e56",
"sha256": "635ec810933c9a74a29427aeb5283b22ed06818f70d900f7dd6e226b62c0f9fd"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev42-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1808157d28c3d8f229cf427edf619e56",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68361,
"upload_time": "2021-03-09T10:08:30",
"upload_time_iso_8601": "2021-03-09T10:08:30.642025Z",
"url": "https://files.pythonhosted.org/packages/f7/65/b66dbff093c1698e01cf38ac5deb654db8961a69534418d60efaaa60d94d/hkube_python_wrapper-2.1.0.3.dev42-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev43": [
{
"comment_text": "",
"digests": {
"md5": "42eccf688942e25bf61bdd89b8988864",
"sha256": "de0c24699264996e5f8dacccb699bd3f16f484ef89ed0cce2a80bc423e016232"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev43-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "42eccf688942e25bf61bdd89b8988864",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68291,
"upload_time": "2021-03-09T11:37:47",
"upload_time_iso_8601": "2021-03-09T11:37:47.263357Z",
"url": "https://files.pythonhosted.org/packages/a9/6c/ccd5f27cc2c94c02828260fde27a1e720dd46044474ad7d2fbefa30ec306/hkube_python_wrapper-2.1.0.3.dev43-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev44": [
{
"comment_text": "",
"digests": {
"md5": "1ba1dfb67c1fed915f153cefbf21d2be",
"sha256": "afe2fecb4a9253cced143124294624c3b92fa2e750e1c44f7451f7e4f6feaa66"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev44-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1ba1dfb67c1fed915f153cefbf21d2be",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66878,
"upload_time": "2021-03-09T14:21:51",
"upload_time_iso_8601": "2021-03-09T14:21:51.441766Z",
"url": "https://files.pythonhosted.org/packages/1e/56/8ba665225dc4d02fad208386413979179438be7c329b55a8dc4ea8eafd8e/hkube_python_wrapper-2.1.0.3.dev44-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev45": [
{
"comment_text": "",
"digests": {
"md5": "7a3b62a05357ff31350af7ca0a5f4b94",
"sha256": "b134b446385cf77d1304d067e85c915ec08056c44421a690da4074f6283c6cfe"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev45-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7a3b62a05357ff31350af7ca0a5f4b94",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66934,
"upload_time": "2021-03-09T15:13:34",
"upload_time_iso_8601": "2021-03-09T15:13:34.510499Z",
"url": "https://files.pythonhosted.org/packages/91/a5/85dbda6b34a240e573c2e70972453cac8690416345652ac5d2d4912204db/hkube_python_wrapper-2.1.0.3.dev45-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.3.dev46": [
{
"comment_text": "",
"digests": {
"md5": "d69659b6eb098c3a7cc2d21f8d2ae9b8",
"sha256": "b2560e0d4be5d805febe0a8a3ea513956417bc855ef48ea294a7cf1a17f0d213"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.3.dev46-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d69659b6eb098c3a7cc2d21f8d2ae9b8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66935,
"upload_time": "2021-03-09T15:57:12",
"upload_time_iso_8601": "2021-03-09T15:57:12.506984Z",
"url": "https://files.pythonhosted.org/packages/59/64/b37cd118e018821261be06ca17eaf4c7e13e51b0f0b225495ae1be457652/hkube_python_wrapper-2.1.0.3.dev46-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev13": [
{
"comment_text": "",
"digests": {
"md5": "b3375be5967ec432ab272d0170f64167",
"sha256": "b30ae06c00f84a219d3ea25bee069158500a1e0b6094a9e9b89c6f307fdb8d67"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b3375be5967ec432ab272d0170f64167",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68117,
"upload_time": "2021-01-19T16:14:56",
"upload_time_iso_8601": "2021-01-19T16:14:56.883209Z",
"url": "https://files.pythonhosted.org/packages/cc/3d/5663b9d9566c826adeb076ab5d1a5d4f7baec1a7810ad0edd88c07ae0d1a/hkube_python_wrapper-2.1.0.4.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev16": [
{
"comment_text": "",
"digests": {
"md5": "72059fa4a3f8a6519e21d3045608241e",
"sha256": "30c45d3bf8d42480f9636143f6bc77dd8682f0234f3bc38c5f3baebf73b39820"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "72059fa4a3f8a6519e21d3045608241e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68661,
"upload_time": "2021-01-28T12:39:39",
"upload_time_iso_8601": "2021-01-28T12:39:39.020398Z",
"url": "https://files.pythonhosted.org/packages/f2/2d/7ea288d8a817f41b81064aa132e4eae772d7490d16c7ca02fe69b46724b4/hkube_python_wrapper-2.1.0.4.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev17": [
{
"comment_text": "",
"digests": {
"md5": "a39178019ed2e3026c29b804b9c0005e",
"sha256": "fc589a3423b278240e3a762d6657d0c4cb311087569f87aeb923d858e4de33c2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a39178019ed2e3026c29b804b9c0005e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68458,
"upload_time": "2021-02-08T15:16:16",
"upload_time_iso_8601": "2021-02-08T15:16:16.488979Z",
"url": "https://files.pythonhosted.org/packages/a6/34/8d3ff4b7c8c55299c6c92ee83b3ee0b5acc939878aee0be6c360c57cc6f1/hkube_python_wrapper-2.1.0.4.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev18": [
{
"comment_text": "",
"digests": {
"md5": "80c7cc428efcbfb1b5a8411b864369d7",
"sha256": "7820de3c2b6ed359dfa5e68be9bc719a5ccfa0ca98ced082ebdf96d8c7df5fbd"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "80c7cc428efcbfb1b5a8411b864369d7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68534,
"upload_time": "2021-02-11T06:51:03",
"upload_time_iso_8601": "2021-02-11T06:51:03.036297Z",
"url": "https://files.pythonhosted.org/packages/fa/1f/7570b97ad4fe2ac1da13f2ccbf56de9a834bab5e010b77b7b28a85b16a73/hkube_python_wrapper-2.1.0.4.dev18-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev20": [
{
"comment_text": "",
"digests": {
"md5": "f4f83a7c83e58b9f2085f37a7cf10218",
"sha256": "bb67f2a5dcacc97e30170c697f86cddee8b1db72a1750f8934dd5df0c8e4ef62"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev20-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f4f83a7c83e58b9f2085f37a7cf10218",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70078,
"upload_time": "2021-02-14T11:59:45",
"upload_time_iso_8601": "2021-02-14T11:59:45.912204Z",
"url": "https://files.pythonhosted.org/packages/2b/09/d3477aa764779c0a7cfe0053accd4ad6e742992af8244e9594182f52c557/hkube_python_wrapper-2.1.0.4.dev20-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev21": [
{
"comment_text": "",
"digests": {
"md5": "3ec2d0001e8eae3ed69d1a87215d310e",
"sha256": "924a305025ca427f1a2d1bcbdc55c2eb30471bf47717e541b0489b7c622c407f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3ec2d0001e8eae3ed69d1a87215d310e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67923,
"upload_time": "2021-02-16T14:00:22",
"upload_time_iso_8601": "2021-02-16T14:00:22.792370Z",
"url": "https://files.pythonhosted.org/packages/ff/90/99ab6517a3bee09ba41abdb19b9ef0dc7a8ff454698039b7eeaf1cbe2d81/hkube_python_wrapper-2.1.0.4.dev21-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev30": [
{
"comment_text": "",
"digests": {
"md5": "e4e3e5a05f7773187ed16e2dc8ed579c",
"sha256": "a5435f43008cb9620f5342feb1c77b7b3bf16b6e299edc70d02ce02c0b0087fb"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev30-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e4e3e5a05f7773187ed16e2dc8ed579c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68306,
"upload_time": "2021-03-10T07:55:23",
"upload_time_iso_8601": "2021-03-10T07:55:23.960219Z",
"url": "https://files.pythonhosted.org/packages/dc/da/fd93b97b7c7856e518865eefd260516868f927d75ac06bb3716d664c4acc/hkube_python_wrapper-2.1.0.4.dev30-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev31": [
{
"comment_text": "",
"digests": {
"md5": "65e29bbb1674fbf4d3fd9387c33650cd",
"sha256": "dd96b3345bf5c1061b9c474c9b23830b9a59da27eed0f04e245bf1348b213dfe"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev31-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "65e29bbb1674fbf4d3fd9387c33650cd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68257,
"upload_time": "2021-03-10T12:34:12",
"upload_time_iso_8601": "2021-03-10T12:34:12.475928Z",
"url": "https://files.pythonhosted.org/packages/25/8f/d15a40e4aec5373c5eea3e99b97f53871b5c78a7cb25b876654ac5275d3e/hkube_python_wrapper-2.1.0.4.dev31-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev32": [
{
"comment_text": "",
"digests": {
"md5": "f7273e47778ef7c26530b3c54acd21d0",
"sha256": "263a31f6935c54888819b4f8b98682c55bbb5696d57ff138c2d2374a85f1107d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev32-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f7273e47778ef7c26530b3c54acd21d0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70257,
"upload_time": "2021-03-15T14:05:32",
"upload_time_iso_8601": "2021-03-15T14:05:32.533081Z",
"url": "https://files.pythonhosted.org/packages/ba/d9/b39fbf63643b13c4fbf604322e7f4735c802c8093d8eccd62813e3de41f3/hkube_python_wrapper-2.1.0.4.dev32-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev33": [
{
"comment_text": "",
"digests": {
"md5": "d40621de1e9efed8015362784c9f813b",
"sha256": "2c71efe6354fe35ab9506efe31abdf3d623141e9dbf6b318d70d29495ac7c2af"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev33-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d40621de1e9efed8015362784c9f813b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68313,
"upload_time": "2021-03-10T12:53:04",
"upload_time_iso_8601": "2021-03-10T12:53:04.328463Z",
"url": "https://files.pythonhosted.org/packages/ab/4b/c62f0a9408708eae8355e68e4a2c9226f31fa702b5e208c4caf5e9cf1871/hkube_python_wrapper-2.1.0.4.dev33-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev34": [
{
"comment_text": "",
"digests": {
"md5": "6a7bbeeb0464a9073359910a4f7c051e",
"sha256": "55bc62f7ac4da6f64d635963542bf8be19cb3913d063044224ab7efde68785b2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev34-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6a7bbeeb0464a9073359910a4f7c051e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68324,
"upload_time": "2021-03-10T15:54:45",
"upload_time_iso_8601": "2021-03-10T15:54:45.201340Z",
"url": "https://files.pythonhosted.org/packages/2f/eb/563a6ca60846d3721e747c7719522ae3a7a86255f35a48cfd8b3b2a12ef5/hkube_python_wrapper-2.1.0.4.dev34-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev35": [
{
"comment_text": "",
"digests": {
"md5": "309644e5115832b33490c3de0f338c91",
"sha256": "2d018f1881d402fd71673e4cd232a8b0a8ec062c03183b24c96d2207eb6f9d10"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev35-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "309644e5115832b33490c3de0f338c91",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69018,
"upload_time": "2021-03-11T10:05:35",
"upload_time_iso_8601": "2021-03-11T10:05:35.732281Z",
"url": "https://files.pythonhosted.org/packages/d2/04/295fdde02b8ce8bd96741a01115fa934fc7b1486a83213853af1b8891518/hkube_python_wrapper-2.1.0.4.dev35-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev36": [
{
"comment_text": "",
"digests": {
"md5": "01528b007ffcc5c7725616fe5f4716d6",
"sha256": "a1da5a5ae8d6c41fef70472903e74455d0274ee4a255e46a37c9d9873f355fbc"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev36-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "01528b007ffcc5c7725616fe5f4716d6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69022,
"upload_time": "2021-03-11T14:06:43",
"upload_time_iso_8601": "2021-03-11T14:06:43.025536Z",
"url": "https://files.pythonhosted.org/packages/62/1c/f5b5d3c61dd068658193311e22c85358bbb05ab6d3b893ab9a2a48e2af6b/hkube_python_wrapper-2.1.0.4.dev36-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev37": [
{
"comment_text": "",
"digests": {
"md5": "b8fb92a3f3a0f337dd925855b2b90fb7",
"sha256": "2f9dcc3d71220d85143668b2cb90b18308df64ed3060ef6a728cad383c3a0b93"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev37-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b8fb92a3f3a0f337dd925855b2b90fb7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69061,
"upload_time": "2021-03-15T07:41:07",
"upload_time_iso_8601": "2021-03-15T07:41:07.170635Z",
"url": "https://files.pythonhosted.org/packages/2a/9f/7a66049ba6d9aea13bc2016ee64de02e254b55347258a12518cd3a709330/hkube_python_wrapper-2.1.0.4.dev37-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.4.dev38": [
{
"comment_text": "",
"digests": {
"md5": "ccd0201191834ce0a814a52bdec7d2e6",
"sha256": "073bd57438ccf64931baeb03a8c10e7866f4cae91508133784a49665ba84295f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.4.dev38-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ccd0201191834ce0a814a52bdec7d2e6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69176,
"upload_time": "2021-03-15T14:11:21",
"upload_time_iso_8601": "2021-03-15T14:11:21.456526Z",
"url": "https://files.pythonhosted.org/packages/1f/b4/0e7290f47cffcc2bb23a8267603d5f005dc86519ac1c05e8874aa821fd42/hkube_python_wrapper-2.1.0.4.dev38-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.1.dev56": [
{
"comment_text": "",
"digests": {
"md5": "6e58b8ce9a4c2269879243906b546342",
"sha256": "88b1478680df3638023a10750a93080fcdcc668b60976d7c0039fc56067e47d9"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.1.dev56-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6e58b8ce9a4c2269879243906b546342",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70528,
"upload_time": "2021-03-29T14:22:56",
"upload_time_iso_8601": "2021-03-29T14:22:56.260783Z",
"url": "https://files.pythonhosted.org/packages/92/43/bffd42b78cfa5146d07e0c039748f0eea7eefb3b61dca4a0cd3beeb00269/hkube_python_wrapper-2.1.0.5.1.dev56-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev16": [
{
"comment_text": "",
"digests": {
"md5": "3bb5cb7e441e05b0b0fc38a94259739f",
"sha256": "85cb656fa9c176e487946cd0142c9687f7fee4b613130c461922de534bc3ed55"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3bb5cb7e441e05b0b0fc38a94259739f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68310,
"upload_time": "2021-01-31T09:50:11",
"upload_time_iso_8601": "2021-01-31T09:50:11.219409Z",
"url": "https://files.pythonhosted.org/packages/3a/42/2a3b66993ce44ff9d0975ce3b82b02ca32dc7f2c232ac3aa694e393f9fdd/hkube_python_wrapper-2.1.0.5.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev17": [
{
"comment_text": "",
"digests": {
"md5": "f4fc19cfcb4482eace10a81363189697",
"sha256": "a0330a92095c97ba62c175964d8e6c8418ada793591f7522b1a2f1559b438a1e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f4fc19cfcb4482eace10a81363189697",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68465,
"upload_time": "2021-02-08T16:47:59",
"upload_time_iso_8601": "2021-02-08T16:47:59.007636Z",
"url": "https://files.pythonhosted.org/packages/81/24/d602abeab3ac9be0486b6e48d340194089424880b59e284e9b45495e3dd9/hkube_python_wrapper-2.1.0.5.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev18": [
{
"comment_text": "",
"digests": {
"md5": "6ba26db6044d9c24853e67b89d0cc63f",
"sha256": "43a33c9ef7b468edb01c4fe5699e17c6c376aeabec5ca99b1208f8bdaf66cbfc"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6ba26db6044d9c24853e67b89d0cc63f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68533,
"upload_time": "2021-02-11T06:57:25",
"upload_time_iso_8601": "2021-02-11T06:57:25.760565Z",
"url": "https://files.pythonhosted.org/packages/f5/e8/3f5bee7a56693c1e94ff09f9033f849d635bcf2a9c8d25e339b410c3eb89/hkube_python_wrapper-2.1.0.5.dev18-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev21": [
{
"comment_text": "",
"digests": {
"md5": "f3a6955d2c6e8d9d7a43cf0c8d5c3661",
"sha256": "854ebf582bcc460aa8586d1f1b3060485075f132919be16d586436ece34ecd9f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f3a6955d2c6e8d9d7a43cf0c8d5c3661",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68106,
"upload_time": "2021-02-17T06:45:08",
"upload_time_iso_8601": "2021-02-17T06:45:08.697072Z",
"url": "https://files.pythonhosted.org/packages/3f/0f/a655ed8dbcc06b45fc9f5525aa25873bf39945e83e070c69f25e84b46b1b/hkube_python_wrapper-2.1.0.5.dev21-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev25": [
{
"comment_text": "",
"digests": {
"md5": "dc5e673e4f884576486bf58cbb647e16",
"sha256": "eca0ecce5df1b6f5318b48857533d11ee67ec66a43cea09fcda2d75701065bfc"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dc5e673e4f884576486bf58cbb647e16",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68164,
"upload_time": "2021-02-24T06:19:59",
"upload_time_iso_8601": "2021-02-24T06:19:59.530779Z",
"url": "https://files.pythonhosted.org/packages/34/9e/3f97488acbc92a6fc694a42dc204b693f3dc2ee04ece48693cf06222b304/hkube_python_wrapper-2.1.0.5.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev40": [
{
"comment_text": "",
"digests": {
"md5": "e531e1c167827501ff9592d7231ce929",
"sha256": "2555717ad9e25a24b398dbd8bc85b23e676d7970165de226e8312424b8d88f64"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev40-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e531e1c167827501ff9592d7231ce929",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68557,
"upload_time": "2021-03-22T15:24:51",
"upload_time_iso_8601": "2021-03-22T15:24:51.209348Z",
"url": "https://files.pythonhosted.org/packages/74/bd/8b1e97f82319e93a1a4827c05a6afa422732ba2f9f3b7b1d22e8ccc5733e/hkube_python_wrapper-2.1.0.5.dev40-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev41": [
{
"comment_text": "",
"digests": {
"md5": "c0aa74c1aad10b097a0b35c1175ade49",
"sha256": "389ac4d541e165d92d49fb0fcaafb799d2f7ef77aef23711c563ef78acf00378"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev41-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c0aa74c1aad10b097a0b35c1175ade49",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68550,
"upload_time": "2021-03-22T15:39:54",
"upload_time_iso_8601": "2021-03-22T15:39:54.337103Z",
"url": "https://files.pythonhosted.org/packages/c1/20/106e039f7e950afc71d89741b796ede3712f7b7237e5eaec4afe6a95bad3/hkube_python_wrapper-2.1.0.5.dev41-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev42": [
{
"comment_text": "",
"digests": {
"md5": "da7238b7d71b4ded2a60217cd0f5d6dd",
"sha256": "a9d442179301395ed45f0817a45aa4afbfdea102023b5dbacfc93a35078648de"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev42-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "da7238b7d71b4ded2a60217cd0f5d6dd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66948,
"upload_time": "2021-03-24T09:07:14",
"upload_time_iso_8601": "2021-03-24T09:07:14.829485Z",
"url": "https://files.pythonhosted.org/packages/10/7b/9e1bb9ba27bb491fcc44b13b8e8586df6d448fbabb33257d4ae7824c5a92/hkube_python_wrapper-2.1.0.5.dev42-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev43": [
{
"comment_text": "",
"digests": {
"md5": "c1915d93eae5ad5db02bc5aa70492674",
"sha256": "90e00e74997c6e99c60723869a75a2e02a9299b7c46e44bc6dbd1ec0d2d39fcb"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev43-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c1915d93eae5ad5db02bc5aa70492674",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66918,
"upload_time": "2021-03-24T11:27:37",
"upload_time_iso_8601": "2021-03-24T11:27:37.542002Z",
"url": "https://files.pythonhosted.org/packages/0c/07/a186b72c43b9dcad8d85a2ebd15760dd852927bcc63c29026de7adb16c85/hkube_python_wrapper-2.1.0.5.dev43-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev44": [
{
"comment_text": "",
"digests": {
"md5": "8921671c2ca37edfacef737b3c562ed1",
"sha256": "f887859f2346e4eeecfc6a6336527f6068fa14294490798f4661e366baeac1fe"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev44-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8921671c2ca37edfacef737b3c562ed1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66896,
"upload_time": "2021-03-24T12:07:01",
"upload_time_iso_8601": "2021-03-24T12:07:01.981906Z",
"url": "https://files.pythonhosted.org/packages/74/15/87d7d56368235e8ba4a0a3478b4e724115d0628aecd2bd48ed34775537fc/hkube_python_wrapper-2.1.0.5.dev44-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev45": [
{
"comment_text": "",
"digests": {
"md5": "7b020526c4c124385637b04453542433",
"sha256": "cf18232004aebfbb89e6863a0497005d7f04c30a0c058be7dd142643e934aa81"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev45-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7b020526c4c124385637b04453542433",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67108,
"upload_time": "2021-03-24T13:58:39",
"upload_time_iso_8601": "2021-03-24T13:58:39.699278Z",
"url": "https://files.pythonhosted.org/packages/87/ec/7a5fe186afff0d728b280c3ead8f3b0edb318920c08cdcb504f7abefbba0/hkube_python_wrapper-2.1.0.5.dev45-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev46": [
{
"comment_text": "",
"digests": {
"md5": "2c2774a341070187d6d112314ba40aa8",
"sha256": "7bd4641bbf2863e3111486c0e5255babc96ef1c0207544876ed128598ab7b2bf"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev46-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2c2774a341070187d6d112314ba40aa8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67528,
"upload_time": "2021-03-24T16:23:01",
"upload_time_iso_8601": "2021-03-24T16:23:01.848803Z",
"url": "https://files.pythonhosted.org/packages/04/79/193aa1f619e963a400c0a7803dd8e5119f49615afaf2229bbdcf7949271c/hkube_python_wrapper-2.1.0.5.dev46-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev47": [
{
"comment_text": "",
"digests": {
"md5": "ffc059242d466a9b4b1cbae07cc9ff55",
"sha256": "3038b95a62c2b6227ceef63002ca1ba896f662d48479d962f4683c8ee31256d1"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev47-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ffc059242d466a9b4b1cbae07cc9ff55",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67537,
"upload_time": "2021-03-25T08:07:21",
"upload_time_iso_8601": "2021-03-25T08:07:21.555592Z",
"url": "https://files.pythonhosted.org/packages/78/a5/31b49bfe270ecfe5a2f579f3b48b108893d2e1395e0aaa05093fc110d4de/hkube_python_wrapper-2.1.0.5.dev47-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev48": [
{
"comment_text": "",
"digests": {
"md5": "8b4547f450945dd3574ddcb042d047ec",
"sha256": "921c0cbe9919472bdee9d1e772e7b59936320dab7c34a6463d40a6b9844c4486"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev48-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8b4547f450945dd3574ddcb042d047ec",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67570,
"upload_time": "2021-03-25T08:22:26",
"upload_time_iso_8601": "2021-03-25T08:22:26.521503Z",
"url": "https://files.pythonhosted.org/packages/e0/5d/fb2adc58c44721aa3af9ef587d385d471925522462f2f9aaee744fdb416f/hkube_python_wrapper-2.1.0.5.dev48-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev49": [
{
"comment_text": "",
"digests": {
"md5": "0ab8e1be89afca53e6a94b588ac0a448",
"sha256": "a19ca3bffa68a60d3270b27e22a2944b7a6761879161f94ada420896b7fe2671"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev49-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0ab8e1be89afca53e6a94b588ac0a448",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67428,
"upload_time": "2021-03-25T08:37:50",
"upload_time_iso_8601": "2021-03-25T08:37:50.865212Z",
"url": "https://files.pythonhosted.org/packages/a1/09/8fa331901787049463b58ad013c0c772a62587289ee32bbb1c7210b2c647/hkube_python_wrapper-2.1.0.5.dev49-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev51": [
{
"comment_text": "",
"digests": {
"md5": "d79b89d16a5fefd0242cea584bc89721",
"sha256": "e3e30c52ceab2d239e2d984a67d590827a47a57e62971460e63cc7d0ae55c870"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev51-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d79b89d16a5fefd0242cea584bc89721",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67529,
"upload_time": "2021-03-25T09:33:14",
"upload_time_iso_8601": "2021-03-25T09:33:14.377502Z",
"url": "https://files.pythonhosted.org/packages/65/bb/2f6db4865a67af89d4f72de7b0af775abd379fb19b7c87f19cd7d2eb947b/hkube_python_wrapper-2.1.0.5.dev51-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev52": [
{
"comment_text": "",
"digests": {
"md5": "6b4a2d067bfb4dbdb8722ea082362d64",
"sha256": "2fbf021c58584ae94fa05cb5b8c224fd483f961d9109959727f4498081c0747f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev52-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6b4a2d067bfb4dbdb8722ea082362d64",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67549,
"upload_time": "2021-03-25T10:28:16",
"upload_time_iso_8601": "2021-03-25T10:28:16.591083Z",
"url": "https://files.pythonhosted.org/packages/1a/7a/9a22aa303c4d4b585294fde1076f7c5522ce31b33ccb1b7a06b063f2f9ee/hkube_python_wrapper-2.1.0.5.dev52-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev53": [
{
"comment_text": "",
"digests": {
"md5": "1fe5e3caef2d93aa77dffb3f7baffc87",
"sha256": "efd35d8b586340392095047f9e1bd72fa618c1ae5696501702b99034d2a01535"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev53-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1fe5e3caef2d93aa77dffb3f7baffc87",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67189,
"upload_time": "2021-03-25T15:32:03",
"upload_time_iso_8601": "2021-03-25T15:32:03.925018Z",
"url": "https://files.pythonhosted.org/packages/55/de/7c7a6d8760a42ceeaa5875190bda527f2271016f7fcb0bc0fb8ce5a43525/hkube_python_wrapper-2.1.0.5.dev53-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev54": [
{
"comment_text": "",
"digests": {
"md5": "84d65d7b99a26ee28b133881fff5298c",
"sha256": "dfbf78b86c90493309d21c99f5c5ac2f465f48f8970220ac38e6e972083ec79f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev54-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "84d65d7b99a26ee28b133881fff5298c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67241,
"upload_time": "2021-03-25T17:04:43",
"upload_time_iso_8601": "2021-03-25T17:04:43.927155Z",
"url": "https://files.pythonhosted.org/packages/e4/03/38421bc0d4db052a241de9c90129c606a949325d44792f3ff0ba867c74e1/hkube_python_wrapper-2.1.0.5.dev54-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev55": [
{
"comment_text": "",
"digests": {
"md5": "ea0606a2b9781c62406257caf67c251a",
"sha256": "2d052e4b3680ae601ede637f3f94a10982f613ce49df088e1cb46418b8b9cc1f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev55-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ea0606a2b9781c62406257caf67c251a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67341,
"upload_time": "2021-03-29T07:47:10",
"upload_time_iso_8601": "2021-03-29T07:47:10.678613Z",
"url": "https://files.pythonhosted.org/packages/80/fe/60a24e32bf6fb8e60534047815b702f1b8babc70c2261c3a4232564794c6/hkube_python_wrapper-2.1.0.5.dev55-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev56": [
{
"comment_text": "",
"digests": {
"md5": "279d4d168835e2be498e5da067a3dd0c",
"sha256": "8bcd934790127e4d849959d889f92962748a99de82feae2b5e5c7e6e37eb99ba"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev56-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "279d4d168835e2be498e5da067a3dd0c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67474,
"upload_time": "2021-03-29T09:30:33",
"upload_time_iso_8601": "2021-03-29T09:30:33.179679Z",
"url": "https://files.pythonhosted.org/packages/01/e2/1004665d195ff216f52e69ca902f11dc4266867b86fc38e1c21dd80bb777/hkube_python_wrapper-2.1.0.5.dev56-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.5.dev60": [
{
"comment_text": "",
"digests": {
"md5": "905056e5dfb4d12bf0a422f5c75c5ac7",
"sha256": "a69435362aa5a4f004bfeb51290dca4bc713974fefe0dc90ad3ebb837a99aefc"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.5.dev60-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "905056e5dfb4d12bf0a422f5c75c5ac7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67514,
"upload_time": "2021-04-01T12:33:06",
"upload_time_iso_8601": "2021-04-01T12:33:06.458794Z",
"url": "https://files.pythonhosted.org/packages/a5/93/6ef364e78ea028e84fd2bc7d953a21ea753b282b4c6fbcb5705d58f0417a/hkube_python_wrapper-2.1.0.5.dev60-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.6.dev13": [
{
"comment_text": "",
"digests": {
"md5": "ae3f6a5c032666cac14521969c64f902",
"sha256": "59ea08a4f83dadd1f8837a572cca49d14401722a0bce8a1815ddc952ea9e3b12"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.6.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ae3f6a5c032666cac14521969c64f902",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68108,
"upload_time": "2021-01-20T09:02:08",
"upload_time_iso_8601": "2021-01-20T09:02:08.357182Z",
"url": "https://files.pythonhosted.org/packages/8d/77/62e1f55e31e5990dc1f42fa3c4c31b4e8eca5dcfaa1ce00f77380501b54e/hkube_python_wrapper-2.1.0.6.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.6.dev16": [
{
"comment_text": "",
"digests": {
"md5": "70ae95b3c385a93636c9dfa088c09d61",
"sha256": "f6fc2308fc4d5bb91f4bff4dced8629ac24e0fa819076e1bb32375ca0fd9e9fb"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.6.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "70ae95b3c385a93636c9dfa088c09d61",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68305,
"upload_time": "2021-01-31T10:03:06",
"upload_time_iso_8601": "2021-01-31T10:03:06.245446Z",
"url": "https://files.pythonhosted.org/packages/60/aa/9c9c51c2446467c9827daaf43f36b98442e0742860b75639692c945537c7/hkube_python_wrapper-2.1.0.6.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.6.dev17": [
{
"comment_text": "",
"digests": {
"md5": "cce61fa1bd632e8c91246053ed04c091",
"sha256": "175c46fbf46a887489fdb27154e014cf311b000e6364ed6b39f86194943539b1"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.6.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cce61fa1bd632e8c91246053ed04c091",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68550,
"upload_time": "2021-02-09T11:11:43",
"upload_time_iso_8601": "2021-02-09T11:11:43.800432Z",
"url": "https://files.pythonhosted.org/packages/06/2f/2b25053fbed4406ff458393788b1cd73a8ca19c0ab0999f957ec761521ea/hkube_python_wrapper-2.1.0.6.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.6.dev18": [
{
"comment_text": "",
"digests": {
"md5": "4fb6986fa82be837c7c4a73310bf496b",
"sha256": "87c0499b629c56b5469e7c93fa8de64d0219c78c1de2c742ff235ef7cb95ecfb"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.6.dev18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4fb6986fa82be837c7c4a73310bf496b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68603,
"upload_time": "2021-02-11T08:28:59",
"upload_time_iso_8601": "2021-02-11T08:28:59.054591Z",
"url": "https://files.pythonhosted.org/packages/13/ae/5b49a2f8a34b96b9c7c569f2be77268fcd038786dca2c08d4eaef7f4497f/hkube_python_wrapper-2.1.0.6.dev18-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.6.dev25": [
{
"comment_text": "",
"digests": {
"md5": "9174c25e3f95955e85cafc8a59d40f32",
"sha256": "814d66eea092e8dce3d97bfb8888faf7706cdce99a2a61c41c31d43963fc2123"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.6.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9174c25e3f95955e85cafc8a59d40f32",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68160,
"upload_time": "2021-02-24T07:01:22",
"upload_time_iso_8601": "2021-02-24T07:01:22.726167Z",
"url": "https://files.pythonhosted.org/packages/e0/b2/95e1908260bd9d949407f6d573d762a3e4db117b5207eb5394aa96b123e5/hkube_python_wrapper-2.1.0.6.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.6.dev56": [
{
"comment_text": "",
"digests": {
"md5": "22e8ccafa7d001d74c86954d76652283",
"sha256": "f2069cc3b2f9de3b0f87f406a47545955d1309a233befa1187c84c4a6df96839"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.6.dev56-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "22e8ccafa7d001d74c86954d76652283",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 70509,
"upload_time": "2021-03-30T09:52:48",
"upload_time_iso_8601": "2021-03-30T09:52:48.172683Z",
"url": "https://files.pythonhosted.org/packages/e2/77/1a0caccf82631753df83369a33d357403ec45675d313b37277accda318b2/hkube_python_wrapper-2.1.0.6.dev56-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.7.dev16": [
{
"comment_text": "",
"digests": {
"md5": "430119a51102be98f6ac94dbfbe99672",
"sha256": "53b86b8e233247d5157cdada8611f98a582f8976444f2de6c9aef61037bcd669"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.7.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "430119a51102be98f6ac94dbfbe99672",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68354,
"upload_time": "2021-01-31T13:14:24",
"upload_time_iso_8601": "2021-01-31T13:14:24.813414Z",
"url": "https://files.pythonhosted.org/packages/fe/d0/583ac6288ebc2b84bca55324e847798f41ea43fd4afa85671bd9a655db73/hkube_python_wrapper-2.1.0.7.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.7.dev17": [
{
"comment_text": "",
"digests": {
"md5": "fc16643c0562286f0ea42d14f1817ed6",
"sha256": "6098dade1c0d9ee2425a70bbf7d9eff9bfe69cd041733f217145c2eef84ce7f4"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.7.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fc16643c0562286f0ea42d14f1817ed6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68569,
"upload_time": "2021-02-09T11:44:52",
"upload_time_iso_8601": "2021-02-09T11:44:52.766949Z",
"url": "https://files.pythonhosted.org/packages/7b/ad/a2d5b5ba1ef80629f1818d3e4bcc7ae2ec9dfa06ca04b240e47c0edb5abe/hkube_python_wrapper-2.1.0.7.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.7.dev25": [
{
"comment_text": "",
"digests": {
"md5": "91aab67ca630eb418b49aef89540b600",
"sha256": "2ed448d4ee33dd0b90c8e62523cb2af590ecf46034aa2e6955265ed46c80cb94"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.7.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "91aab67ca630eb418b49aef89540b600",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68130,
"upload_time": "2021-02-24T07:31:25",
"upload_time_iso_8601": "2021-02-24T07:31:25.186684Z",
"url": "https://files.pythonhosted.org/packages/90/09/1671554d0c91f8a6a64a3c3b524804c2d4300c4887918451766402ac5a5e/hkube_python_wrapper-2.1.0.7.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.7.dev56": [
{
"comment_text": "",
"digests": {
"md5": "83a7a7c756c20b376dcd49f85323b36e",
"sha256": "cef638bcb7e1a8678b7372856aa2a1684d25537768655730a9578d4f1d0e9182"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.7.dev56-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "83a7a7c756c20b376dcd49f85323b36e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67950,
"upload_time": "2021-03-30T11:55:42",
"upload_time_iso_8601": "2021-03-30T11:55:42.118791Z",
"url": "https://files.pythonhosted.org/packages/ab/75/41e7e95e5a98a3a66293bf106c6423b027ed9d33e7407f7b95330d988c5c/hkube_python_wrapper-2.1.0.7.dev56-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.8.dev16": [
{
"comment_text": "",
"digests": {
"md5": "16e6f56a7de2563218ccd9b1545b4e6c",
"sha256": "ed004821b4b53ea3f5529668fc153e1370c7c777ad03bc59cac82277fafcae34"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.8.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "16e6f56a7de2563218ccd9b1545b4e6c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69003,
"upload_time": "2021-02-02T06:30:31",
"upload_time_iso_8601": "2021-02-02T06:30:31.422278Z",
"url": "https://files.pythonhosted.org/packages/a2/5a/796814e60fcd763735443fd8feb3bcb0c4a40c109a6af4d3182aa9cc4d57/hkube_python_wrapper-2.1.0.8.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.8.dev25": [
{
"comment_text": "",
"digests": {
"md5": "565bbb9c9204e26e757c9ee42ae5b2b7",
"sha256": "25be585bb149cf339e374dcccba9088c8d2290feec0347d104e07fc8edb27705"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.8.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "565bbb9c9204e26e757c9ee42ae5b2b7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68360,
"upload_time": "2021-02-24T11:10:54",
"upload_time_iso_8601": "2021-02-24T11:10:54.061709Z",
"url": "https://files.pythonhosted.org/packages/1b/b5/19197c7726d22450d2c295802256aa9bb0a0c3e229aebf37a8df9130d02a/hkube_python_wrapper-2.1.0.8.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.9.dev16": [
{
"comment_text": "",
"digests": {
"md5": "666c720fe9e94154bc9dfebcc5bce593",
"sha256": "81ce5a85a7e32bf011e94768113641add374a12771785ccb7b3728323de7d755"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.9.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "666c720fe9e94154bc9dfebcc5bce593",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68542,
"upload_time": "2021-02-02T07:44:47",
"upload_time_iso_8601": "2021-02-02T07:44:47.214839Z",
"url": "https://files.pythonhosted.org/packages/b0/06/16b981f57376530f30bca9c07ff7f86721825cec1df8f34892e04ce9192b/hkube_python_wrapper-2.1.0.9.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.9.dev17": [
{
"comment_text": "",
"digests": {
"md5": "01c8933378daf618673461aa1503a7a7",
"sha256": "7b591eea90ef6b8e58f84ae9d43a456c1f682a35be08c39a6faf21fbc07bca21"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.9.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "01c8933378daf618673461aa1503a7a7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68558,
"upload_time": "2021-02-09T13:49:22",
"upload_time_iso_8601": "2021-02-09T13:49:22.712435Z",
"url": "https://files.pythonhosted.org/packages/b9/97/19ab5d34140de9c3fd3a84c567389a186629b817982a160f55d97e680081/hkube_python_wrapper-2.1.0.9.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.9.dev25": [
{
"comment_text": "",
"digests": {
"md5": "8cc22c4c2750871da239e340d0c51979",
"sha256": "c464f795407f0dbf21c9e7a27bf503888c56365a5ca6c9e4d0ade400bdeaf233"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.9.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8cc22c4c2750871da239e340d0c51979",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68392,
"upload_time": "2021-03-01T08:13:51",
"upload_time_iso_8601": "2021-03-01T08:13:51.671981Z",
"url": "https://files.pythonhosted.org/packages/89/1b/388e4c812ca78e451a76079059bbc54fcb26aaded4ed71e061bd157fd731/hkube_python_wrapper-2.1.0.9.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev1": [
{
"comment_text": "",
"digests": {
"md5": "525c45423ae5c0e035abe2a511047f5f",
"sha256": "c4e7f5c81db8f383b7063de0c347cb47b611bf152f0b1759a496331ef98bd67f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "525c45423ae5c0e035abe2a511047f5f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 60571,
"upload_time": "2020-11-15T15:08:46",
"upload_time_iso_8601": "2020-11-15T15:08:46.217362Z",
"url": "https://files.pythonhosted.org/packages/75/7b/8a30a79c1ad9dd1beff7ea9c34a41ce25bcd3f284d869c15c26a4e8308f8/hkube_python_wrapper-2.1.0.dev1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f8986058002116d44ed7332634eca28e",
"sha256": "6b9a846394ddc1addfbcfe2d8faf9fa82b20d1a2dd201ea274aaf38b66d3f85b"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev1.tar.gz",
"has_sig": false,
"md5_digest": "f8986058002116d44ed7332634eca28e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39342,
"upload_time": "2020-11-15T15:08:47",
"upload_time_iso_8601": "2020-11-15T15:08:47.793656Z",
"url": "https://files.pythonhosted.org/packages/3b/d3/7a273d525fc49bd81391e7d8108a586dc666732623cd6d55bb756c61274d/hkube_python_wrapper-2.1.0.dev1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev10": [
{
"comment_text": "",
"digests": {
"md5": "ddd3227393f1652291e6a2043f05280d",
"sha256": "597dcf63e486155af39bfc815aec65ab50ea8e2edded8ba1896d3062b44f2e3a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ddd3227393f1652291e6a2043f05280d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 63881,
"upload_time": "2021-01-04T12:05:34",
"upload_time_iso_8601": "2021-01-04T12:05:34.672541Z",
"url": "https://files.pythonhosted.org/packages/93/a8/72bcf62c619a44305aa3f7caf74eb044107bba8be96174c71a4f39acc942/hkube_python_wrapper-2.1.0.dev10-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e0ed60a2251c5d548d0020f40f01474e",
"sha256": "9b695844e9563a6aa107bbed48ad43029032d5df563a8b0a3e3d38f63738b487"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev10.tar.gz",
"has_sig": false,
"md5_digest": "e0ed60a2251c5d548d0020f40f01474e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41293,
"upload_time": "2021-01-04T12:05:35",
"upload_time_iso_8601": "2021-01-04T12:05:35.922138Z",
"url": "https://files.pythonhosted.org/packages/f8/dc/534c6bf4e60315543c1d7c251bb49379f20640776f50f6076c94f483ca7f/hkube_python_wrapper-2.1.0.dev10.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev11": [
{
"comment_text": "",
"digests": {
"md5": "f27cdf8e3dac216b365a7d303a1eab77",
"sha256": "a21e3bac379b5c91288a07fcf57da4a7fb2c62d443fb30dc02aa773f8714b0b7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev11-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f27cdf8e3dac216b365a7d303a1eab77",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 63882,
"upload_time": "2021-01-05T09:19:46",
"upload_time_iso_8601": "2021-01-05T09:19:46.247529Z",
"url": "https://files.pythonhosted.org/packages/c6/10/43473ab7b161e144674c71cdcc06e03c66c677099c5b2450594433e9e081/hkube_python_wrapper-2.1.0.dev11-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b6654381f1032d7848a3d882f159c68e",
"sha256": "81e0056d47720718a1d7a7eb50f6cdf3ecffb9ffba36b96e149e5b5483dbd97e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev11.tar.gz",
"has_sig": false,
"md5_digest": "b6654381f1032d7848a3d882f159c68e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41306,
"upload_time": "2021-01-05T09:19:47",
"upload_time_iso_8601": "2021-01-05T09:19:47.570320Z",
"url": "https://files.pythonhosted.org/packages/82/32/62bdd5339db0c8f1bf5b506a6110d87c9d6f355e6f00de2104eef90f8ddd/hkube_python_wrapper-2.1.0.dev11.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev12": [
{
"comment_text": "",
"digests": {
"md5": "4d8b4f842cddccc6a94316e37f81c562",
"sha256": "c702026eb3619e9a4bfa4ebf7bc5d92c2866da949807e13380846ec750441b38"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev12-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4d8b4f842cddccc6a94316e37f81c562",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 63887,
"upload_time": "2021-01-07T08:23:26",
"upload_time_iso_8601": "2021-01-07T08:23:26.660256Z",
"url": "https://files.pythonhosted.org/packages/d9/c7/a271f9fda859236d2f59934c5a18a22fbda95a9f730e2f6de1e5e35cb7c4/hkube_python_wrapper-2.1.0.dev12-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "dd8cad4930961025dc5ab774e5111780",
"sha256": "1aa5726ea6641eb7c0d62809141cf096a48387a94672dc51cd84a39cffb5ea49"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev12.tar.gz",
"has_sig": false,
"md5_digest": "dd8cad4930961025dc5ab774e5111780",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41299,
"upload_time": "2021-01-07T08:23:27",
"upload_time_iso_8601": "2021-01-07T08:23:27.700728Z",
"url": "https://files.pythonhosted.org/packages/3f/46/ab37e04c802ca256e2a144c9405794e6f30312af3bd98b8917624b313d8a/hkube_python_wrapper-2.1.0.dev12.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev13": [
{
"comment_text": "",
"digests": {
"md5": "16209b62236815198e97d095b7d25832",
"sha256": "447d2054ffff836ae13f588eab7242337f77a612d578b0afdf1239cb532c09ae"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "16209b62236815198e97d095b7d25832",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 64075,
"upload_time": "2021-01-13T15:43:28",
"upload_time_iso_8601": "2021-01-13T15:43:28.780721Z",
"url": "https://files.pythonhosted.org/packages/1a/72/afce4e70d2142a5d8739b75956e7976bf04165054cd32210c7a01abca6ca/hkube_python_wrapper-2.1.0.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5e1a17b88d9cbf89216c62d3f55fabf4",
"sha256": "7d30593fed0939ac04e691e4c5a3a6a28053c0cae0fd4199a98df940fb462fc2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev13.tar.gz",
"has_sig": false,
"md5_digest": "5e1a17b88d9cbf89216c62d3f55fabf4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41539,
"upload_time": "2021-01-13T15:43:30",
"upload_time_iso_8601": "2021-01-13T15:43:30.092638Z",
"url": "https://files.pythonhosted.org/packages/fc/b9/a7c8b143e3e7e41faa080820a8e969c924931d0e92c0373bb1d8a6d87845/hkube_python_wrapper-2.1.0.dev13.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev14": [
{
"comment_text": "",
"digests": {
"md5": "5c89bf81edc10f31b14931b8167d0b9c",
"sha256": "e1149d5e24a3cd755e100024d63dfc718d976ed944f33d62cdff09987be37371"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev14-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5c89bf81edc10f31b14931b8167d0b9c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 64363,
"upload_time": "2021-01-18T08:05:30",
"upload_time_iso_8601": "2021-01-18T08:05:30.691211Z",
"url": "https://files.pythonhosted.org/packages/05/60/3e897b7f6d2e59ec33e6aec044a66128e85a73254fcbf7fe4440f7215e28/hkube_python_wrapper-2.1.0.dev14-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "7b27b92c1b6f4c1b6894ffa0024e94ff",
"sha256": "b01a4e8388237b79eeae0bb0ab8ee4abe73a80aa5856b79217ac366521681506"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev14.tar.gz",
"has_sig": false,
"md5_digest": "7b27b92c1b6f4c1b6894ffa0024e94ff",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41769,
"upload_time": "2021-01-18T08:05:31",
"upload_time_iso_8601": "2021-01-18T08:05:31.973310Z",
"url": "https://files.pythonhosted.org/packages/9f/ee/0e8f3b6d26bf01eacb3fac4388eb31919ea958cd30e721f7b7ce18f5e813/hkube_python_wrapper-2.1.0.dev14.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev15": [
{
"comment_text": "",
"digests": {
"md5": "0070fbe78f500a37a40d1b6d68829d31",
"sha256": "8aa2a43ed53aff7dda1342fb399fe095677e573cf0e9bf028d200595a5d4dc32"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev15-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0070fbe78f500a37a40d1b6d68829d31",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 64367,
"upload_time": "2021-01-21T12:58:38",
"upload_time_iso_8601": "2021-01-21T12:58:38.592260Z",
"url": "https://files.pythonhosted.org/packages/94/a1/b8c6bd1f03d864bab6bbdae84b35f81071ac28d3e6bbfe2a8df4c3e097ec/hkube_python_wrapper-2.1.0.dev15-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9886371c44f5fe0d6b1440fc0405f049",
"sha256": "01db26fa8e0cc29c1de523e21dc31d61c22545f93fe0f503948bd0a56e1fcb32"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev15.tar.gz",
"has_sig": false,
"md5_digest": "9886371c44f5fe0d6b1440fc0405f049",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41749,
"upload_time": "2021-01-21T12:58:39",
"upload_time_iso_8601": "2021-01-21T12:58:39.573116Z",
"url": "https://files.pythonhosted.org/packages/e3/d3/75ee6a7893ac5ee1330dab932993f8debeb226659433a35cab0b7b465439/hkube_python_wrapper-2.1.0.dev15.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev16": [
{
"comment_text": "",
"digests": {
"md5": "c557f256f7ae03cc15fa5842d8f5c675",
"sha256": "87e68be8ba60174a8a38a27e43a68fe30ae8ade0d3476c5fb233680ffed31bd7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev16-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c557f256f7ae03cc15fa5842d8f5c675",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 64604,
"upload_time": "2021-01-24T07:41:58",
"upload_time_iso_8601": "2021-01-24T07:41:58.856889Z",
"url": "https://files.pythonhosted.org/packages/4f/61/eba33409de6ce216ab36118404e89d701122c4ae0fbae1c35aaa355e9079/hkube_python_wrapper-2.1.0.dev16-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9a5b1af08d175cd79b58dbe9fd2b37ce",
"sha256": "962800ab464da5b88657f4ecc17b297f4de82a3c6474bb738ebb8efc8a5e5a92"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev16.tar.gz",
"has_sig": false,
"md5_digest": "9a5b1af08d175cd79b58dbe9fd2b37ce",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41950,
"upload_time": "2021-01-24T07:42:00",
"upload_time_iso_8601": "2021-01-24T07:42:00.170776Z",
"url": "https://files.pythonhosted.org/packages/d5/ef/3abe8b73fcded03903ec842809de7df2381b8b067c57a541de45c3ea0f06/hkube_python_wrapper-2.1.0.dev16.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev17": [
{
"comment_text": "",
"digests": {
"md5": "28129c073a0f9a8b1991a3dcaeed2b07",
"sha256": "68289a053d68278b288aa0e4d834fc239e13a14bf3607083b8d155f0d9345044"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "28129c073a0f9a8b1991a3dcaeed2b07",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 64679,
"upload_time": "2021-01-25T11:37:21",
"upload_time_iso_8601": "2021-01-25T11:37:21.240844Z",
"url": "https://files.pythonhosted.org/packages/52/c0/823616ed193a17e3d02d4507472a6f34149669898d4fa94c19f95d235e12/hkube_python_wrapper-2.1.0.dev17-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4d637295f0db58cdea216549b3850d10",
"sha256": "498525f5f4bf472d25879e9e9f6640e6b0c7c16bb2f6ff2115d5b82a680d2edd"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev17.tar.gz",
"has_sig": false,
"md5_digest": "4d637295f0db58cdea216549b3850d10",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42009,
"upload_time": "2021-01-25T11:37:22",
"upload_time_iso_8601": "2021-01-25T11:37:22.326582Z",
"url": "https://files.pythonhosted.org/packages/1d/2a/9229c2c42e95c36dfa8a045a0044146480c03e4aa894a067de3c115c12fb/hkube_python_wrapper-2.1.0.dev17.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev18": [
{
"comment_text": "",
"digests": {
"md5": "5db906e15577c74642f0c56c0ceef5f4",
"sha256": "a11318416c10f7bdf49b719d512098ad39a8ceb1b3306ef5f872108e4dd18b35"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5db906e15577c74642f0c56c0ceef5f4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 64995,
"upload_time": "2021-02-10T07:19:40",
"upload_time_iso_8601": "2021-02-10T07:19:40.767032Z",
"url": "https://files.pythonhosted.org/packages/8d/bb/b3cd7a93b67845f00a165b74ff87f38b227cf96ff0282710af037fb97af2/hkube_python_wrapper-2.1.0.dev18-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "83c3266f5960af3aab36176889030c0e",
"sha256": "407abf450c39a7f1b299d8cabf8c0e46a8cdf206f3cd20e216ae4cb741ef5444"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev18.tar.gz",
"has_sig": false,
"md5_digest": "83c3266f5960af3aab36176889030c0e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42283,
"upload_time": "2021-02-10T07:19:41",
"upload_time_iso_8601": "2021-02-10T07:19:41.930310Z",
"url": "https://files.pythonhosted.org/packages/da/16/a7029db7bc064d4979228502f84af8568ef9eba690fabc2e9c48f88bd553/hkube_python_wrapper-2.1.0.dev18.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev19": [
{
"comment_text": "",
"digests": {
"md5": "1d3678b17f6035c5313750e5e43dfe5a",
"sha256": "ee9f87ea39e849d3f70ee5238f706add643ca22455fc927e83b196e7c5bee9f9"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev19-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1d3678b17f6035c5313750e5e43dfe5a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 65162,
"upload_time": "2021-02-11T10:27:00",
"upload_time_iso_8601": "2021-02-11T10:27:00.969193Z",
"url": "https://files.pythonhosted.org/packages/3f/ec/69f716fb7bad521d13bcd58d1641b72d93bd0b09cb801411bf527e413d76/hkube_python_wrapper-2.1.0.dev19-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "34d25d6b169d9108395334c372aa9d7b",
"sha256": "8b5c493b3f2b68af5e873387006a95a8355e5237899edaeb843ced8ec0bccc95"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev19.tar.gz",
"has_sig": false,
"md5_digest": "34d25d6b169d9108395334c372aa9d7b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42407,
"upload_time": "2021-02-11T10:27:02",
"upload_time_iso_8601": "2021-02-11T10:27:02.274686Z",
"url": "https://files.pythonhosted.org/packages/58/b5/e48d409788035ca25852458a69d43312569ecf43b3bbc17a0cad144e6949/hkube_python_wrapper-2.1.0.dev19.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev2": [
{
"comment_text": "",
"digests": {
"md5": "a2b9e619bcb6ba9cafc4b42e8ea2ca64",
"sha256": "8a8f6d4d71a79ed5850eb6e51da234202653ce253b0c3f4a589f9835902c9385"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a2b9e619bcb6ba9cafc4b42e8ea2ca64",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 60572,
"upload_time": "2020-11-15T16:10:05",
"upload_time_iso_8601": "2020-11-15T16:10:05.024662Z",
"url": "https://files.pythonhosted.org/packages/0e/b7/a562520a47fd56ca7a7a96e3e5b8289686518886ac5db2bd5384ac95f134/hkube_python_wrapper-2.1.0.dev2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8a3cc3b5383550ff641bf9d479a623f1",
"sha256": "471f8907fc84c8188c31a93b7e5fde95c3ab4f4de9d2a9f8d1824cc0d35e5f23"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev2.tar.gz",
"has_sig": false,
"md5_digest": "8a3cc3b5383550ff641bf9d479a623f1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39361,
"upload_time": "2020-11-15T16:10:06",
"upload_time_iso_8601": "2020-11-15T16:10:06.765022Z",
"url": "https://files.pythonhosted.org/packages/38/19/a266c939476059c4cf67cd0a4b71804e4e806ea19bdfdb736ea3209d6ae7/hkube_python_wrapper-2.1.0.dev2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev20": [
{
"comment_text": "",
"digests": {
"md5": "81050b3a47dbefe4b44f66454a455311",
"sha256": "c6f7e1881fc40c9f6fe0f7e4151b0886c03abe76e21ac5b1343ee729abf0476f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev20-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "81050b3a47dbefe4b44f66454a455311",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 65204,
"upload_time": "2021-02-11T12:58:32",
"upload_time_iso_8601": "2021-02-11T12:58:32.627382Z",
"url": "https://files.pythonhosted.org/packages/7f/8b/4c9a324e9e302153262507970488df52c5cad0d23df3f732b2846bd4149c/hkube_python_wrapper-2.1.0.dev20-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "043a53eca5db70382ab316baba4d1deb",
"sha256": "ba56125e8495b522da5eda2add6d68e0040e73dcb8ff78b183d9bb2e8b02762e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev20.tar.gz",
"has_sig": false,
"md5_digest": "043a53eca5db70382ab316baba4d1deb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42428,
"upload_time": "2021-02-11T12:58:33",
"upload_time_iso_8601": "2021-02-11T12:58:33.710975Z",
"url": "https://files.pythonhosted.org/packages/de/6c/5849b6b4151f2696bf1b14c5475bf173529968f9d15ac7120fa4b9743033/hkube_python_wrapper-2.1.0.dev20.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev21": [
{
"comment_text": "",
"digests": {
"md5": "ecebad972b50c6b37e33acdecb525e39",
"sha256": "0b0a8f45b97ca6077f24233b7abd515dde499cdb79833775a30d43379f5de9af"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev21-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ecebad972b50c6b37e33acdecb525e39",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66422,
"upload_time": "2021-02-14T10:19:37",
"upload_time_iso_8601": "2021-02-14T10:19:37.907972Z",
"url": "https://files.pythonhosted.org/packages/e7/f8/bbc6f15114977e23cc5d53f00d0f51a54ef200c6f90881fce28d87654de0/hkube_python_wrapper-2.1.0.dev21-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "0f03108b4cfae0d30111364821473194",
"sha256": "450b444867a66b723ad07279dd967fea4615713188b6fe17b757e6b62fe7c559"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev21.tar.gz",
"has_sig": false,
"md5_digest": "0f03108b4cfae0d30111364821473194",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43012,
"upload_time": "2021-02-14T10:19:38",
"upload_time_iso_8601": "2021-02-14T10:19:38.780849Z",
"url": "https://files.pythonhosted.org/packages/62/15/b4d8fd6910718d10eea0e6f266005e95ddb4ac9e2d7718e68fc1b59f5970/hkube_python_wrapper-2.1.0.dev21.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev22": [
{
"comment_text": "",
"digests": {
"md5": "c1bf2e8c8b57ae16cf845b28bbd01ca9",
"sha256": "0cf6860f79ba3e802bddcccd50b9c2be9e0ebb79bbb889c84de4a31ee196d2e6"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev22-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c1bf2e8c8b57ae16cf845b28bbd01ca9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66602,
"upload_time": "2021-02-14T12:50:37",
"upload_time_iso_8601": "2021-02-14T12:50:37.780112Z",
"url": "https://files.pythonhosted.org/packages/1e/a5/6feb8f7779248e73f459f9c160149842bc9bdf5e7c11fbfb67bc123c3457/hkube_python_wrapper-2.1.0.dev22-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "341d7fd59aa27f195608b2c696e209db",
"sha256": "df5671153ddf8dbf7f780e758b799ca83b1da161e9990a7e3fc0e6b102cb7451"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev22.tar.gz",
"has_sig": false,
"md5_digest": "341d7fd59aa27f195608b2c696e209db",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43138,
"upload_time": "2021-02-14T12:50:38",
"upload_time_iso_8601": "2021-02-14T12:50:38.787195Z",
"url": "https://files.pythonhosted.org/packages/a8/67/3689ffd3870cfdad8e15efcf1df16493fc310aeb876628485718dd6df1b4/hkube_python_wrapper-2.1.0.dev22.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev23": [
{
"comment_text": "",
"digests": {
"md5": "dfbb9029add689e22670f7e1b3a6ae21",
"sha256": "e87d0739f20d152e4bac718edf3401bbb4fff58c1da51b14894099b21a3cec6c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev23-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dfbb9029add689e22670f7e1b3a6ae21",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66763,
"upload_time": "2021-02-18T13:58:59",
"upload_time_iso_8601": "2021-02-18T13:58:59.854665Z",
"url": "https://files.pythonhosted.org/packages/44/8c/6b3af3c79d050b5fb2fc0963a4b149b85a0ef8ae185d72af73e6c83192e9/hkube_python_wrapper-2.1.0.dev23-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "867dea28a6ff054d322b9347667575e7",
"sha256": "86302a77283b774b5e87243a7f67a25061389aaf1700e1ecd0b585352cf259b7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev23.tar.gz",
"has_sig": false,
"md5_digest": "867dea28a6ff054d322b9347667575e7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43339,
"upload_time": "2021-02-18T13:59:01",
"upload_time_iso_8601": "2021-02-18T13:59:01.063252Z",
"url": "https://files.pythonhosted.org/packages/d6/33/10ce19ed97b46bf53c0399054f04b958413d9945f02b3389a0ee313ee9f8/hkube_python_wrapper-2.1.0.dev23.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev24": [
{
"comment_text": "",
"digests": {
"md5": "ec219b1ccfdfd90ca825704833558c3e",
"sha256": "966e29db725f7497e79d71e917e23cef6c4dbbbad2ff3f691ef37e5bfe2ce791"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev24-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ec219b1ccfdfd90ca825704833558c3e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66786,
"upload_time": "2021-02-18T15:03:11",
"upload_time_iso_8601": "2021-02-18T15:03:11.255861Z",
"url": "https://files.pythonhosted.org/packages/04/c9/a3fd11f2274015da4ae40176086a1827aee0a3007ad04dbf272fe82ab6cf/hkube_python_wrapper-2.1.0.dev24-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e0f9f59cdbf763f560c64d6071f23ede",
"sha256": "413b910fc7e8a1d5d6425d3b526b70c508e0d69dcb0a8258ce16e5bf2e1ee7c5"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev24.tar.gz",
"has_sig": false,
"md5_digest": "e0f9f59cdbf763f560c64d6071f23ede",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43359,
"upload_time": "2021-02-18T15:03:12",
"upload_time_iso_8601": "2021-02-18T15:03:12.665154Z",
"url": "https://files.pythonhosted.org/packages/6f/56/17d2f673eed14f46aa3c0645da37c2c2a7233ebfa13c9c951bd056a4038a/hkube_python_wrapper-2.1.0.dev24.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev25": [
{
"comment_text": "",
"digests": {
"md5": "4882d9b17989a5e33140cfd080e3fab2",
"sha256": "78f44aed8bb8607251ac76a59f4f8562389a44b418644b7ef50f08849359cb14"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4882d9b17989a5e33140cfd080e3fab2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66779,
"upload_time": "2021-02-22T08:06:01",
"upload_time_iso_8601": "2021-02-22T08:06:01.506720Z",
"url": "https://files.pythonhosted.org/packages/74/f7/73190fe4d672fe55a027402c2dcad407bb670d0a227088603f834c527224/hkube_python_wrapper-2.1.0.dev25-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "bf905031eb5bbb9c018f35be39414446",
"sha256": "37a9b1a6749d4e9d94cf204a3c1dc721d43431a0dd8eee200139e287e887bd23"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev25.tar.gz",
"has_sig": false,
"md5_digest": "bf905031eb5bbb9c018f35be39414446",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43385,
"upload_time": "2021-02-22T08:06:03",
"upload_time_iso_8601": "2021-02-22T08:06:03.061394Z",
"url": "https://files.pythonhosted.org/packages/62/20/58f5fd70e3c847d47bd45d7d3ab3b634b9ca69a7ef060a14102cf0e34617/hkube_python_wrapper-2.1.0.dev25.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev26": [
{
"comment_text": "",
"digests": {
"md5": "921bc6224590f0d97acd783339c575be",
"sha256": "0a8660d98eda8dc4e1717977e6d07ca3dbf1767c3634d67c6c325d7e53681c3a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev26-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "921bc6224590f0d97acd783339c575be",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67016,
"upload_time": "2021-02-25T06:58:11",
"upload_time_iso_8601": "2021-02-25T06:58:11.280942Z",
"url": "https://files.pythonhosted.org/packages/bc/45/b18e96fa2b9c24287b68b1196d30481518b9e2264899c030252548b5fe6c/hkube_python_wrapper-2.1.0.dev26-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "018ecf5b91bec66ca940f0b737a3f6dd",
"sha256": "cede2a219fcfd2fc1e82ffdbab347789d21fe23abaeaabbeaeeb53e7a68497fa"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev26.tar.gz",
"has_sig": false,
"md5_digest": "018ecf5b91bec66ca940f0b737a3f6dd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43610,
"upload_time": "2021-02-25T06:58:12",
"upload_time_iso_8601": "2021-02-25T06:58:12.354120Z",
"url": "https://files.pythonhosted.org/packages/1a/ae/3e77da61502b70d810be746aaa9866e6a55ee8b911334e51e117de579fe6/hkube_python_wrapper-2.1.0.dev26.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev27": [
{
"comment_text": "",
"digests": {
"md5": "7bfdcfe42a514550e11d6df9203e8999",
"sha256": "976aebac2329b8a687867d4da50680b768eae036ebd42be08a6039a45f53fc64"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev27-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7bfdcfe42a514550e11d6df9203e8999",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67049,
"upload_time": "2021-02-25T10:18:46",
"upload_time_iso_8601": "2021-02-25T10:18:46.306015Z",
"url": "https://files.pythonhosted.org/packages/15/34/c8c46538bd2134caa7166441f41e3f4000b6e5fe49c94f20c3d085a08172/hkube_python_wrapper-2.1.0.dev27-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "be1abd6adf9c7fa39398920d991f3f29",
"sha256": "9b5a74519a5377cb92cf72c78fa397579e7d4315e17562b659b0d5547d9971ba"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev27.tar.gz",
"has_sig": false,
"md5_digest": "be1abd6adf9c7fa39398920d991f3f29",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43629,
"upload_time": "2021-02-25T10:18:47",
"upload_time_iso_8601": "2021-02-25T10:18:47.649582Z",
"url": "https://files.pythonhosted.org/packages/80/4d/5ad9dbc609fbbab531ab41750f2225205d71c88ee3bf560051e44894a772/hkube_python_wrapper-2.1.0.dev27.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev28": [
{
"comment_text": "",
"digests": {
"md5": "11664b164480145bb395397bb114a1e4",
"sha256": "d719dbf9ac2a356a08c8deaa66e962c30776a4822afb016fa67360d91f5481ba"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev28-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "11664b164480145bb395397bb114a1e4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67022,
"upload_time": "2021-02-28T13:47:31",
"upload_time_iso_8601": "2021-02-28T13:47:31.644711Z",
"url": "https://files.pythonhosted.org/packages/b8/07/328005f67229f518f05d570b6dda87f3c5c77244b89e20ca1ac34a082183/hkube_python_wrapper-2.1.0.dev28-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "38538f00fe14dae1fa1804683ef3d42d",
"sha256": "788f4f2d822182f1f8bd1dd4d17f57d9b3070596d2a6fbc00a78d3659ea26578"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev28.tar.gz",
"has_sig": false,
"md5_digest": "38538f00fe14dae1fa1804683ef3d42d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43606,
"upload_time": "2021-02-28T13:47:33",
"upload_time_iso_8601": "2021-02-28T13:47:33.002419Z",
"url": "https://files.pythonhosted.org/packages/20/5f/fefef2fd07c34815c3385dbb5907c564dc3753fb15fda316f2b094fb93fb/hkube_python_wrapper-2.1.0.dev28.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev29": [
{
"comment_text": "",
"digests": {
"md5": "42b3e78c0ee37389cd002b09ebe66d59",
"sha256": "02231c4355c6f070c3adf6e12c556f523bf4285ae7cf543db8d1987818c68a07"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev29-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "42b3e78c0ee37389cd002b09ebe66d59",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 66951,
"upload_time": "2021-02-28T17:23:26",
"upload_time_iso_8601": "2021-02-28T17:23:26.137271Z",
"url": "https://files.pythonhosted.org/packages/dc/08/d62da630e9c1b7ff4170a5326697ad635e4f780edf022825708367775706/hkube_python_wrapper-2.1.0.dev29-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "922c86ef477314cb665b6f17c33e0b45",
"sha256": "f0ff8b60cdccb136872a350feeb9126b67e93218d0764b2f959dca15b3154c80"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev29.tar.gz",
"has_sig": false,
"md5_digest": "922c86ef477314cb665b6f17c33e0b45",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43605,
"upload_time": "2021-02-28T17:23:27",
"upload_time_iso_8601": "2021-02-28T17:23:27.519900Z",
"url": "https://files.pythonhosted.org/packages/b5/78/74e96a0c031b97e8bc2b55737a59e2f54739c3495c5e77793195849d2c37/hkube_python_wrapper-2.1.0.dev29.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev30": [
{
"comment_text": "",
"digests": {
"md5": "cb4e9808b61a2a81aca9962379020f8e",
"sha256": "22f394011ef1a2b00bc459dc1f045cfc99b444a1ebe88b005b495bc37ec2991a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev30-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cb4e9808b61a2a81aca9962379020f8e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67022,
"upload_time": "2021-03-01T13:18:01",
"upload_time_iso_8601": "2021-03-01T13:18:01.514819Z",
"url": "https://files.pythonhosted.org/packages/af/1c/a88945a6c0d08b3b9d5efd79d231a48a7f4ae1bf7aa03246be0b12442213/hkube_python_wrapper-2.1.0.dev30-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8d8317bf2f2ca04b07d9a0461f7e617f",
"sha256": "403c164afc1e98f2831b3b22e487278b8431541e7254838e8feb3aeabed9827e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev30.tar.gz",
"has_sig": false,
"md5_digest": "8d8317bf2f2ca04b07d9a0461f7e617f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43624,
"upload_time": "2021-03-01T13:18:02",
"upload_time_iso_8601": "2021-03-01T13:18:02.804925Z",
"url": "https://files.pythonhosted.org/packages/fc/05/3cac4c88aae734bee5df4c2ded43d32a213947653fad144efe43ac10c804/hkube_python_wrapper-2.1.0.dev30.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev31": [
{
"comment_text": "",
"digests": {
"md5": "d9c297c8e14af338b8a59c8d566f7117",
"sha256": "0a405756a67efcac8e1bb7629712f621546ca16e890cb0520f12326c81c8df5f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev31-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d9c297c8e14af338b8a59c8d566f7117",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67375,
"upload_time": "2021-03-08T08:28:38",
"upload_time_iso_8601": "2021-03-08T08:28:38.141641Z",
"url": "https://files.pythonhosted.org/packages/b7/30/2fa3bde0e7360ec4df5851f1294ea9f55e23c6e10841264e03466c67cc20/hkube_python_wrapper-2.1.0.dev31-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f1e8c3b64cba9bb8cee36e57018e5731",
"sha256": "65f1dbe1afff44b8902cf54c7a90cbda55cd906918877fb8b3b8ae2f35052249"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev31.tar.gz",
"has_sig": false,
"md5_digest": "f1e8c3b64cba9bb8cee36e57018e5731",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43941,
"upload_time": "2021-03-08T08:28:39",
"upload_time_iso_8601": "2021-03-08T08:28:39.448874Z",
"url": "https://files.pythonhosted.org/packages/ac/7c/b26cffb02bc729d774c858f4a702a49c363cbb8848b4bfa93f5947bacfee/hkube_python_wrapper-2.1.0.dev31.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev32": [
{
"comment_text": "",
"digests": {
"md5": "15bef215a382c2c73bfec681c6fa5d57",
"sha256": "2cfc3d444f4542380a4e7b87066674f1bd3e3cce23c4893a7872b2892ff88465"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev32-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "15bef215a382c2c73bfec681c6fa5d57",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68270,
"upload_time": "2021-03-08T12:54:08",
"upload_time_iso_8601": "2021-03-08T12:54:08.744084Z",
"url": "https://files.pythonhosted.org/packages/41/7e/3ed1f6bbfc2aa1671a14d7aef00149d38be442db7c3161e9777c81fff995/hkube_python_wrapper-2.1.0.dev32-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "662210b875fe49854b47265ed962e6d3",
"sha256": "7095db5c908249ce0f04ea3a181e87a65e7c3bc4fb92089f1ab648496b517af5"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev32.tar.gz",
"has_sig": false,
"md5_digest": "662210b875fe49854b47265ed962e6d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44373,
"upload_time": "2021-03-08T12:54:10",
"upload_time_iso_8601": "2021-03-08T12:54:10.349930Z",
"url": "https://files.pythonhosted.org/packages/ce/26/fa81b741020a43e2b09d4f868e41b74e6d282b08b0ffa7e99ec119205b10/hkube_python_wrapper-2.1.0.dev32.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev33": [
{
"comment_text": "",
"digests": {
"md5": "5cf95d8e67a69f365e4efb741c937c11",
"sha256": "4b33e54fd8572e8b2254999af2ecb6f8fa53c2286e731db6492e5b151e3106b4"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev33-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5cf95d8e67a69f365e4efb741c937c11",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68530,
"upload_time": "2021-03-15T17:11:04",
"upload_time_iso_8601": "2021-03-15T17:11:04.306936Z",
"url": "https://files.pythonhosted.org/packages/f4/df/ad0d3f61f3ba54c6e03c14eb45bf3bc13d26309ecf3956bdc779723ec2d2/hkube_python_wrapper-2.1.0.dev33-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ba9aa2198c5bd39f43745b649280baf0",
"sha256": "3a120479115cb1f6d772ab7351da75e94f5f81beb908b09ea648824c08199651"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev33.tar.gz",
"has_sig": false,
"md5_digest": "ba9aa2198c5bd39f43745b649280baf0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44689,
"upload_time": "2021-03-15T17:11:05",
"upload_time_iso_8601": "2021-03-15T17:11:05.689401Z",
"url": "https://files.pythonhosted.org/packages/6c/78/06b8a8b08cc26c78d76dd36fbfec1f5159e0f7b795251ac9358483ebf1ed/hkube_python_wrapper-2.1.0.dev33.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev34": [
{
"comment_text": "",
"digests": {
"md5": "8e69d530423badfa3e908e20bb4c38a7",
"sha256": "26be837947060986925ca1c49c0aee91cf0ee8b1e5ed23a23b78f49890c797a0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev34-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8e69d530423badfa3e908e20bb4c38a7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69280,
"upload_time": "2021-03-17T14:26:28",
"upload_time_iso_8601": "2021-03-17T14:26:28.850733Z",
"url": "https://files.pythonhosted.org/packages/37/ba/4f392d8164862fc0a4cc07f2ef9009ecd0d256be50cfbe86f6b81e727d76/hkube_python_wrapper-2.1.0.dev34-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1081d351a94f520e15c1fe823216a152",
"sha256": "a44e780e86969d1adf6c6a3848ff7b2ba229a8c7bc4be9e3ee6da16858bd46a1"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev34.tar.gz",
"has_sig": false,
"md5_digest": "1081d351a94f520e15c1fe823216a152",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45270,
"upload_time": "2021-03-17T14:26:30",
"upload_time_iso_8601": "2021-03-17T14:26:30.195264Z",
"url": "https://files.pythonhosted.org/packages/9d/13/3a0961c4c39128535cbb6d62cd9410b98b9916a3053a890461745d4ec063/hkube_python_wrapper-2.1.0.dev34.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev35": [
{
"comment_text": "",
"digests": {
"md5": "8bd124480ac0c74b7c5b661dbcd27ed0",
"sha256": "d23ae440800ab382c0ce2b02344b9a79c2a6e0f94c41835668633a2cdf86fd60"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev35-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8bd124480ac0c74b7c5b661dbcd27ed0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69273,
"upload_time": "2021-03-25T12:44:23",
"upload_time_iso_8601": "2021-03-25T12:44:23.393924Z",
"url": "https://files.pythonhosted.org/packages/a1/7a/c452c7199698ede2760eb52a2ed648ca89bd6a942039d164f3e93450cb4d/hkube_python_wrapper-2.1.0.dev35-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "08a35ffb48da99bdcb7422076f5ab1c5",
"sha256": "ab7660c8cc905d3fc80a2ed6185c75f505dfedaf6a04d32f2e2dc0ffb6af31ea"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev35.tar.gz",
"has_sig": false,
"md5_digest": "08a35ffb48da99bdcb7422076f5ab1c5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45269,
"upload_time": "2021-03-25T12:44:24",
"upload_time_iso_8601": "2021-03-25T12:44:24.655223Z",
"url": "https://files.pythonhosted.org/packages/04/4a/e2aaa52e42b08081b160889ea7df9465d4f78f2828ffb92d57c227eedf9d/hkube_python_wrapper-2.1.0.dev35.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev36": [
{
"comment_text": "",
"digests": {
"md5": "fc4524c47f20dae7c916ab02b421ba05",
"sha256": "8e4708506e7ef192d01648738a75f16662a46a0def6da03e7907b57781e29a1f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev36-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fc4524c47f20dae7c916ab02b421ba05",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69276,
"upload_time": "2021-04-01T13:55:13",
"upload_time_iso_8601": "2021-04-01T13:55:13.559764Z",
"url": "https://files.pythonhosted.org/packages/fe/17/2536dfe0849f1003678420229bdba8b23a96087f61fb6dc01a11c7b736f3/hkube_python_wrapper-2.1.0.dev36-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b903dd55b1c9d4f913fe606935b3936c",
"sha256": "559fae6fd22c26564df26e1ed6d266ab6ff6dbe2bba512066d3e78693bc52274"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev36.tar.gz",
"has_sig": false,
"md5_digest": "b903dd55b1c9d4f913fe606935b3936c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45268,
"upload_time": "2021-04-01T13:55:14",
"upload_time_iso_8601": "2021-04-01T13:55:14.945882Z",
"url": "https://files.pythonhosted.org/packages/83/7d/9d83bbcee5cfa917adb305c253edce751814b7f9a6486a00ae30c8851795/hkube_python_wrapper-2.1.0.dev36.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev37": [
{
"comment_text": "",
"digests": {
"md5": "cb478c7cd65fe23eab267b4eebbd36e4",
"sha256": "857f711720414a1153f806c8f5ee6d4f8103f8412b79d5358a612fe62fd8ed7c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev37-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cb478c7cd65fe23eab267b4eebbd36e4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67487,
"upload_time": "2021-04-01T15:08:40",
"upload_time_iso_8601": "2021-04-01T15:08:40.675027Z",
"url": "https://files.pythonhosted.org/packages/13/8f/63162f5522f95ecfb22961a6833c27ac4238b6d546841ba35fde61a248be/hkube_python_wrapper-2.1.0.dev37-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "31d7a276e3d9b171b53fca74e30c536d",
"sha256": "0c32d8ca017d6891f48503892b3f19a280f8e2c5237198e49a4688ea7a6e0aa6"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev37.tar.gz",
"has_sig": false,
"md5_digest": "31d7a276e3d9b171b53fca74e30c536d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44057,
"upload_time": "2021-04-01T15:08:41",
"upload_time_iso_8601": "2021-04-01T15:08:41.988402Z",
"url": "https://files.pythonhosted.org/packages/12/90/5af9c74c0043d016b302a51e04b0909e95fdca2564ba7374c3101af0346d/hkube_python_wrapper-2.1.0.dev37.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev6": [
{
"comment_text": "",
"digests": {
"md5": "a19b0245c41a0a557a477cfb0eb03b2f",
"sha256": "65d9e2db76fa265c318045b5f2ffaafd2e2cd51c2d1fbfc407357a9b068eb148"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a19b0245c41a0a557a477cfb0eb03b2f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 60571,
"upload_time": "2020-12-02T08:55:45",
"upload_time_iso_8601": "2020-12-02T08:55:45.554365Z",
"url": "https://files.pythonhosted.org/packages/c1/ec/ee3ef4594c75b1124b071a01a11c135053d8d3192cbbd9952821a73229b2/hkube_python_wrapper-2.1.0.dev6-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9b00b88a2e4abdffba8ba7f43ab583cd",
"sha256": "d3cdafb91e06bcb5e4128708466704e839da489fbafef2fddfd61fa27085c5b2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev6.tar.gz",
"has_sig": false,
"md5_digest": "9b00b88a2e4abdffba8ba7f43ab583cd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39169,
"upload_time": "2020-12-02T08:55:46",
"upload_time_iso_8601": "2020-12-02T08:55:46.929117Z",
"url": "https://files.pythonhosted.org/packages/30/56/66008d082c3ec4b5208bf3a01c4ef2bfa7ceb3329848a3e4020058b2119b/hkube_python_wrapper-2.1.0.dev6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev7": [
{
"comment_text": "",
"digests": {
"md5": "36b115aeb84976034af0ef379bc88863",
"sha256": "4ffd6a99d3ca7409951ad579b1c5c724efb77472dc194fc18fe433057cdf6d2a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "36b115aeb84976034af0ef379bc88863",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 62971,
"upload_time": "2020-12-03T15:21:01",
"upload_time_iso_8601": "2020-12-03T15:21:01.856098Z",
"url": "https://files.pythonhosted.org/packages/51/ac/18afbf92b2655f2bf5ef2000c43e40eaaba2d9086a534aa932a7968e7092/hkube_python_wrapper-2.1.0.dev7-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8ac17b3a2d2ea09b8b04631c18e09f70",
"sha256": "562de5a9a4d17f01788253a0fc815c55b58ecae161b55a18d47c8cb49a94194c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev7.tar.gz",
"has_sig": false,
"md5_digest": "8ac17b3a2d2ea09b8b04631c18e09f70",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40695,
"upload_time": "2020-12-03T15:21:03",
"upload_time_iso_8601": "2020-12-03T15:21:03.025820Z",
"url": "https://files.pythonhosted.org/packages/3e/4d/1032f1904fb362bf0476a9ae485c94cf3ea72b140cb4823d03a5591f42b6/hkube_python_wrapper-2.1.0.dev7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev8": [
{
"comment_text": "",
"digests": {
"md5": "dc249709e3163e53dc00f7d73629dc19",
"sha256": "d8871a74f3359e4ce6362d65d2f16a3429115e39d76ab504f7a9ae45679cd272"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dc249709e3163e53dc00f7d73629dc19",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 63524,
"upload_time": "2020-12-13T08:47:53",
"upload_time_iso_8601": "2020-12-13T08:47:53.314539Z",
"url": "https://files.pythonhosted.org/packages/c6/62/0cb96ee1dc649c954a178360cd27b760334607dba0cca3ea8e526439577e/hkube_python_wrapper-2.1.0.dev8-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "bd3c35b9802408c20959635aac57b977",
"sha256": "4d3f3efd1b437129be0f6ca84623f418f28bd94d0b5337b195cf25900bb5fd95"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev8.tar.gz",
"has_sig": false,
"md5_digest": "bd3c35b9802408c20959635aac57b977",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40997,
"upload_time": "2020-12-13T08:47:54",
"upload_time_iso_8601": "2020-12-13T08:47:54.446949Z",
"url": "https://files.pythonhosted.org/packages/fe/b7/a8e306990bf89523dcf271a66eb64c7a2a6cab35f04bdc6cd81a9119200f/hkube_python_wrapper-2.1.0.dev8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0.dev9": [
{
"comment_text": "",
"digests": {
"md5": "364d28b194b021a0986e58d3a565a35d",
"sha256": "9fba6126dab8c3f50d28729e913efe72c62132a310429d937c68b8180b210d2c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "364d28b194b021a0986e58d3a565a35d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 63511,
"upload_time": "2020-12-29T12:37:47",
"upload_time_iso_8601": "2020-12-29T12:37:47.944040Z",
"url": "https://files.pythonhosted.org/packages/ad/4f/edff139db2294155a5ec8a48510577194ecf91521540b9bfbb8a25a95ee9/hkube_python_wrapper-2.1.0.dev9-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "0b0c1a390ef29d8cadfa74da2b1a52d3",
"sha256": "e5f3e45872c95b7077867caff79caf2637259959cfd1d4aec872b55ffc7061a0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0.dev9.tar.gz",
"has_sig": false,
"md5_digest": "0b0c1a390ef29d8cadfa74da2b1a52d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40986,
"upload_time": "2020-12-29T12:37:49",
"upload_time_iso_8601": "2020-12-29T12:37:49.245146Z",
"url": "https://files.pythonhosted.org/packages/6c/24/eee97e37d7d4549fef2e80fe010b0934966bc3ce2232732c5a23065e9ffa/hkube_python_wrapper-2.1.0.dev9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0b0.dev13": [
{
"comment_text": "",
"digests": {
"md5": "f33329b8e96ea2f972765acfd2dd80d6",
"sha256": "20752912a01ba5e6b27a564a09a48f5dd6678425144ba6abb58ba3426e3c8bc2"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0b0.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f33329b8e96ea2f972765acfd2dd80d6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67899,
"upload_time": "2021-01-18T10:29:10",
"upload_time_iso_8601": "2021-01-18T10:29:10.486438Z",
"url": "https://files.pythonhosted.org/packages/83/d9/c4a16803733deca5f7d42a21d2af3d8587c282309412d15cb10ad342355c/hkube_python_wrapper-2.1.0b0.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.1.0rc0.dev13": [
{
"comment_text": "",
"digests": {
"md5": "1c907fb2a3ca8a71e65cf62eb388e11a",
"sha256": "351c2f16886a08b7338e04cd61497f0d285a8d5438175630c9fb34b9cef7228a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.1.0rc0.dev13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1c907fb2a3ca8a71e65cf62eb388e11a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67922,
"upload_time": "2021-01-19T09:22:22",
"upload_time_iso_8601": "2021-01-19T09:22:22.753672Z",
"url": "https://files.pythonhosted.org/packages/14/54/f32a75aff69f2bf59e2a585351a28460c69df1ef8b7d3fa1b6099370700d/hkube_python_wrapper-2.1.0rc0.dev13-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev1": [
{
"comment_text": "",
"digests": {
"md5": "4684c1e175c889818e6674e4f0deecae",
"sha256": "f6ce074a5d66dd50121075e5349750728e131bd3be5e425150ad1d7146b92311"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4684c1e175c889818e6674e4f0deecae",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67478,
"upload_time": "2021-04-19T12:51:19",
"upload_time_iso_8601": "2021-04-19T12:51:19.516692Z",
"url": "https://files.pythonhosted.org/packages/48/84/643614770047b825bbd10864d2110f38079abdf93a7fb76100bbdb36431d/hkube_python_wrapper-2.2.0.dev1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a230455c90615889cc9ee7e5389e5ba6",
"sha256": "c08d00a94a80b21ed99b8b7c33f226f356c4de823e8894ba7f5ee85ac8809d55"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev1.tar.gz",
"has_sig": false,
"md5_digest": "a230455c90615889cc9ee7e5389e5ba6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44067,
"upload_time": "2021-04-19T12:51:20",
"upload_time_iso_8601": "2021-04-19T12:51:20.814076Z",
"url": "https://files.pythonhosted.org/packages/ea/16/955e6a518dd0755c939eb004331d3ff4287f791b4d124e0b29c9e6368869/hkube_python_wrapper-2.2.0.dev1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev2": [
{
"comment_text": "",
"digests": {
"md5": "76cdba0bae61160e26654691b9107a46",
"sha256": "a0085e39cba81150d7e0e72b130fdb7f5745429a187f76a675eec1522ce7cda9"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "76cdba0bae61160e26654691b9107a46",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67744,
"upload_time": "2021-06-23T12:27:31",
"upload_time_iso_8601": "2021-06-23T12:27:31.166877Z",
"url": "https://files.pythonhosted.org/packages/27/23/733c527f20a2266fa117186ed7ed8ba200506fe5bf30410043199c9d6c14/hkube_python_wrapper-2.2.0.dev2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9b171ef7d3bd71d8b09facb703e46faa",
"sha256": "d1aee26f8b832ef660ac93f247eb370abc1725b9747b541836cddd67f523cbce"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev2.tar.gz",
"has_sig": false,
"md5_digest": "9b171ef7d3bd71d8b09facb703e46faa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44289,
"upload_time": "2021-06-23T12:27:32",
"upload_time_iso_8601": "2021-06-23T12:27:32.613839Z",
"url": "https://files.pythonhosted.org/packages/e7/58/f49a8195aa44d2af7d6286528031cf11d3bc8603b0f70914e7c97b9117a3/hkube_python_wrapper-2.2.0.dev2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev3": [
{
"comment_text": "",
"digests": {
"md5": "7b39c03a920e241f41ca909c3a1212d3",
"sha256": "04c2fe4906a93d5de835e4159d2ec32d6eb668988ec391819833486f81040160"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7b39c03a920e241f41ca909c3a1212d3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67631,
"upload_time": "2021-07-13T10:10:49",
"upload_time_iso_8601": "2021-07-13T10:10:49.083293Z",
"url": "https://files.pythonhosted.org/packages/b2/dd/276ac34fcb724d158d98b87f20c273cd59e9f3414fb1dc69d821eeffaa00/hkube_python_wrapper-2.2.0.dev3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c6d8b8be7afc2639147ea12d16e00eea",
"sha256": "1c34217a4f2b08e812d563c4882f8bbd38ff687af6152fe2159f9913072ab31d"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev3.tar.gz",
"has_sig": false,
"md5_digest": "c6d8b8be7afc2639147ea12d16e00eea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44235,
"upload_time": "2021-07-13T10:10:50",
"upload_time_iso_8601": "2021-07-13T10:10:50.493101Z",
"url": "https://files.pythonhosted.org/packages/6a/b7/f87f0aed4bcb8f27cf18dd8f1a2c9ede87dda213e9cae41031edd80589b5/hkube_python_wrapper-2.2.0.dev3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev4": [
{
"comment_text": "",
"digests": {
"md5": "c795b74a7a3fdaf3bfde701129ca1359",
"sha256": "da8bc81588fd361a57c26e7a460d46babf4dd08f312abf05c66bf9eee8dc494a"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c795b74a7a3fdaf3bfde701129ca1359",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68666,
"upload_time": "2021-07-27T13:27:02",
"upload_time_iso_8601": "2021-07-27T13:27:02.562838Z",
"url": "https://files.pythonhosted.org/packages/27/ec/17ddf0a5fd5b35b0015de990f5ec3c8ddf68577f3764e0241a0369115b95/hkube_python_wrapper-2.2.0.dev4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ddee35ec4d6da67981918dbb554270ad",
"sha256": "46c8b644fd61e728e6cc63ca81175841ca5b3e6c5e965963b586040653c71c81"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev4.tar.gz",
"has_sig": false,
"md5_digest": "ddee35ec4d6da67981918dbb554270ad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45008,
"upload_time": "2021-07-27T13:27:04",
"upload_time_iso_8601": "2021-07-27T13:27:04.374997Z",
"url": "https://files.pythonhosted.org/packages/34/61/7e65b00ed5f192243a9c8524ac4bdd1b86040b2bf96b6634cb72d1cc8318/hkube_python_wrapper-2.2.0.dev4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev5": [
{
"comment_text": "",
"digests": {
"md5": "8619edaac26601046b79528b7ed30806",
"sha256": "bac7fafa0a4797eb30c5856fd57e23d58de8ad964025463cc133b0398e6f15d7"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8619edaac26601046b79528b7ed30806",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68759,
"upload_time": "2021-07-28T11:24:46",
"upload_time_iso_8601": "2021-07-28T11:24:46.951411Z",
"url": "https://files.pythonhosted.org/packages/a6/f4/f326b52b74113de77ece4c9d4553c05743e677d9b020f81ca5ec85dd5d09/hkube_python_wrapper-2.2.0.dev5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "abf7c186b235d6168a01d870d2f1af2b",
"sha256": "531c500e7efc4fead0dedc5bae8986a1df8bb307869bd0074012abc51ab6eae4"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev5.tar.gz",
"has_sig": false,
"md5_digest": "abf7c186b235d6168a01d870d2f1af2b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45069,
"upload_time": "2021-07-28T11:24:48",
"upload_time_iso_8601": "2021-07-28T11:24:48.435882Z",
"url": "https://files.pythonhosted.org/packages/9b/42/23f6f16a06ee1cb2afcd9447088f2dd26e36b3c63b002e4fd8f91e5e755e/hkube_python_wrapper-2.2.0.dev5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev6": [
{
"comment_text": "",
"digests": {
"md5": "6eec45366f5112fdf547d28b7f01d8d6",
"sha256": "48859118ab904dfa2c57d5504d743d3dfe3a0c294e8a742978b9bed70aff0835"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6eec45366f5112fdf547d28b7f01d8d6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68759,
"upload_time": "2021-08-18T14:18:30",
"upload_time_iso_8601": "2021-08-18T14:18:30.516651Z",
"url": "https://files.pythonhosted.org/packages/6a/ae/fc9531911859b558479a59b47ca0dbe1e048c19ff30815494aeee8090508/hkube_python_wrapper-2.2.0.dev6-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f66c40d8833b6eff3eceabdd5acadbb8",
"sha256": "35db64986284258b5b1c2459265d08bb5280243e26f227738059a94c48764c1f"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev6.tar.gz",
"has_sig": false,
"md5_digest": "f66c40d8833b6eff3eceabdd5acadbb8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45077,
"upload_time": "2021-08-18T14:18:32",
"upload_time_iso_8601": "2021-08-18T14:18:32.244097Z",
"url": "https://files.pythonhosted.org/packages/93/d7/26c653c1320a5d240dee01dc5e3780ca3cc0374582a147effded66535a59/hkube_python_wrapper-2.2.0.dev6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev7": [
{
"comment_text": "",
"digests": {
"md5": "e95df0fc3d539a1314a1c0f4eb626235",
"sha256": "42c92de8fb875c9b4387bcf0d4bb49b7fa9e15b210f5bd5412f0d867d012295e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e95df0fc3d539a1314a1c0f4eb626235",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68759,
"upload_time": "2021-08-18T14:32:56",
"upload_time_iso_8601": "2021-08-18T14:32:56.457293Z",
"url": "https://files.pythonhosted.org/packages/d5/ff/c4e235c132e4d9575b5826e5571980b0500b3c1c0167d6b9a9442b1e59c6/hkube_python_wrapper-2.2.0.dev7-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b629300733a27b35029c514853bde08a",
"sha256": "3069a910475560ba9d1cb5a77bb9fa03dd501fe2f92c0bdf4daf653b065421d5"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev7.tar.gz",
"has_sig": false,
"md5_digest": "b629300733a27b35029c514853bde08a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45069,
"upload_time": "2021-08-18T14:32:57",
"upload_time_iso_8601": "2021-08-18T14:32:57.920777Z",
"url": "https://files.pythonhosted.org/packages/e7/5d/dbcd942a8f30de8b8d841e7d5b8d52481afce84a75790c84294ec1cf2178/hkube_python_wrapper-2.2.0.dev7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev8": [
{
"comment_text": "",
"digests": {
"md5": "3c67745fd469c5ca97e2879838067a98",
"sha256": "a581f2883bd5aed30c3c51a342c126bb8753b3dfeed89094b38c62c4bb0d7d8b"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3c67745fd469c5ca97e2879838067a98",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68760,
"upload_time": "2021-08-19T06:51:31",
"upload_time_iso_8601": "2021-08-19T06:51:31.479597Z",
"url": "https://files.pythonhosted.org/packages/04/4c/0d2f35eb14ec0164a1024449fdacfb23f372191caec0c0b6434e9161a287/hkube_python_wrapper-2.2.0.dev8-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1a1d1d97ff725f9c32596e88f4166433",
"sha256": "1b8fc24bc3b2b0ff6e9ea188059b1d8cfdb6473c44e538edde3d9d1b392b9063"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev8.tar.gz",
"has_sig": false,
"md5_digest": "1a1d1d97ff725f9c32596e88f4166433",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45077,
"upload_time": "2021-08-19T06:51:33",
"upload_time_iso_8601": "2021-08-19T06:51:33.084798Z",
"url": "https://files.pythonhosted.org/packages/0a/5e/32dccbd6c2986e564981f69eceaf94ce01201879c01c73cb459677e59ea8/hkube_python_wrapper-2.2.0.dev8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.0.dev9": [
{
"comment_text": "",
"digests": {
"md5": "6368ba48d1e913689cd63bd2033542e5",
"sha256": "ec8477d672e41e334056dd40470b932d6276b93f5f345311194dc16a9dc9d284"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6368ba48d1e913689cd63bd2033542e5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68759,
"upload_time": "2021-08-19T08:11:55",
"upload_time_iso_8601": "2021-08-19T08:11:55.603262Z",
"url": "https://files.pythonhosted.org/packages/2e/d7/616846d0dbae82b41510c980502d0f6854322e028306f0c58a472a7d8bbe/hkube_python_wrapper-2.2.0.dev9-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "190db63a679d73d291772f4d4e43c39c",
"sha256": "03a87be868b44b93479e3a8ff3b61c88919fd3a5ace43fe5fe238ddf20479ae4"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.0.dev9.tar.gz",
"has_sig": false,
"md5_digest": "190db63a679d73d291772f4d4e43c39c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45081,
"upload_time": "2021-08-19T08:11:57",
"upload_time_iso_8601": "2021-08-19T08:11:57.316715Z",
"url": "https://files.pythonhosted.org/packages/e3/83/84b1aa0d6ba930d1f597cfb67bf476be592be22d2bf06d168bd08d110dc8/hkube_python_wrapper-2.2.0.dev9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.2.1": [
{
"comment_text": "",
"digests": {
"md5": "0b0a23791cc98a37f8148ed3491b2236",
"sha256": "e0b434ecfc4013b01880c6f0695974a65a308048ac1177b8793a2f90773e13af"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0b0a23791cc98a37f8148ed3491b2236",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68646,
"upload_time": "2021-11-07T09:44:05",
"upload_time_iso_8601": "2021-11-07T09:44:05.546144Z",
"url": "https://files.pythonhosted.org/packages/51/18/db0bfca0e44e3d91a8a155c1579bb4943fe6e6f362e1d174270f3f55a9ac/hkube_python_wrapper-2.2.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.2.2": [
{
"comment_text": "",
"digests": {
"md5": "549f336a1a54dbc4f06f4bce5bcaefe2",
"sha256": "64330f55dc2ddcc13ab3717bbafa4daf34f088262a28ce1a099358087a531b7b"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "549f336a1a54dbc4f06f4bce5bcaefe2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68848,
"upload_time": "2021-11-24T07:55:50",
"upload_time_iso_8601": "2021-11-24T07:55:50.779425Z",
"url": "https://files.pythonhosted.org/packages/3f/c4/5ff2f961b33954ef9d617ca2380b72e0854785765f01eff88af65d60a636/hkube_python_wrapper-2.2.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"2.3.0": [
{
"comment_text": "",
"digests": {
"md5": "35a094f6d0368dd586e05ad7a02f8b11",
"sha256": "babd6a310ac88b996b26907690f55822e8f0ce3dbac3492b204c08799eca19c1"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "35a094f6d0368dd586e05ad7a02f8b11",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68851,
"upload_time": "2022-02-28T15:17:25",
"upload_time_iso_8601": "2022-02-28T15:17:25.915778Z",
"url": "https://files.pythonhosted.org/packages/46/f3/dd80c2d83fd587ecaeb5f19f06352e811338e18e9aba316315f8d68abf0a/hkube_python_wrapper-2.3.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f661573caf4637a47495215a776e0727",
"sha256": "176bd56a1f3ec0e99b1257a74606e79a948ffb093cb3ca8f5b4a0d16b09391fe"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0.tar.gz",
"has_sig": false,
"md5_digest": "f661573caf4637a47495215a776e0727",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45153,
"upload_time": "2022-02-28T15:17:27",
"upload_time_iso_8601": "2022-02-28T15:17:27.617864Z",
"url": "https://files.pythonhosted.org/packages/06/93/2070fe773e25b189e3867e0b601a2b696da94d1ed39dded90cd1a605597e/hkube_python_wrapper-2.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.3.0.dev1": [
{
"comment_text": "",
"digests": {
"md5": "349c6c49c70842e9964755ae8108f368",
"sha256": "9dd8aad3a90eab31a1856f4fa6b060a2ed37b104153936f70f7d17907cbf3da0"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0.dev1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "349c6c49c70842e9964755ae8108f368",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68703,
"upload_time": "2021-11-07T11:20:57",
"upload_time_iso_8601": "2021-11-07T11:20:57.933661Z",
"url": "https://files.pythonhosted.org/packages/b9/32/8c4fb5d94f19ad35e12a3d2d91b6cc50311a89a09d505855f223606b3a38/hkube_python_wrapper-2.3.0.dev1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "32a884a29ccb529d5774792a82ebad44",
"sha256": "0e24a771a44023229659bfa6810b4f819c9cf02fbb67237c636ec757dcf9a8c9"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0.dev1.tar.gz",
"has_sig": false,
"md5_digest": "32a884a29ccb529d5774792a82ebad44",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45005,
"upload_time": "2021-11-07T11:20:59",
"upload_time_iso_8601": "2021-11-07T11:20:59.524337Z",
"url": "https://files.pythonhosted.org/packages/e1/dd/7e3e471abea83b604f368fd8993112aa13c569c9bb73a47cf0c47a6dc615/hkube_python_wrapper-2.3.0.dev1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.3.0.dev2": [
{
"comment_text": "",
"digests": {
"md5": "f01e0e0dfc70c0d2919bfc725abdcfb3",
"sha256": "900f86c241266ff61d4ee22116460e09c35891e9dd3a9514054e2ccbd9cfc78e"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0.dev2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f01e0e0dfc70c0d2919bfc725abdcfb3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68905,
"upload_time": "2021-11-24T07:40:56",
"upload_time_iso_8601": "2021-11-24T07:40:56.905621Z",
"url": "https://files.pythonhosted.org/packages/78/fb/fc2cabe4ecd779ce2cdbd8f5a62103afc01099a1ce5a1de12323451d8245/hkube_python_wrapper-2.3.0.dev2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "bdd10c0488763e62ad90d551c1b35144",
"sha256": "fb9af8d4d98a3558afb2534e18e1eb701ef34b2c2f4242133cfafaf879000e2c"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0.dev2.tar.gz",
"has_sig": false,
"md5_digest": "bdd10c0488763e62ad90d551c1b35144",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45206,
"upload_time": "2021-11-24T07:40:58",
"upload_time_iso_8601": "2021-11-24T07:40:58.721425Z",
"url": "https://files.pythonhosted.org/packages/23/d1/de6b01c4d2516363c5a2a1a79efb5e63b4d269ce767dffa0d4520852fe12/hkube_python_wrapper-2.3.0.dev2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.3.0.dev3": [
{
"comment_text": "",
"digests": {
"md5": "bfb252fc2d09b7bf893326f1e770d8d7",
"sha256": "3202a7ffe31b444f0aaa1dce24f43897b2d64095a279ecb4dcf3c90557d98508"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0.dev3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bfb252fc2d09b7bf893326f1e770d8d7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68905,
"upload_time": "2022-02-23T08:44:12",
"upload_time_iso_8601": "2022-02-23T08:44:12.908596Z",
"url": "https://files.pythonhosted.org/packages/d8/7f/2ef5aaba376faf9816fa1045011d88c5e797a8fdacab0befbca8473ee1ca/hkube_python_wrapper-2.3.0.dev3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "aee61faf713eae394cb96ffe7aff88fd",
"sha256": "424acc03ed1c6baabcd1466ebbee92cff348ec82fa32f4c37d4d0b1599059073"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0.dev3.tar.gz",
"has_sig": false,
"md5_digest": "aee61faf713eae394cb96ffe7aff88fd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45212,
"upload_time": "2022-02-23T08:44:15",
"upload_time_iso_8601": "2022-02-23T08:44:15.037030Z",
"url": "https://files.pythonhosted.org/packages/b0/e7/0e949c85da7bfae99f3cc1892e360f5d87ba6c75e2dc50d683306d904c83/hkube_python_wrapper-2.3.0.dev3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.4.0.dev1": [
{
"comment_text": "",
"digests": {
"md5": "d053dc63574017060eb4ba7962255ba4",
"sha256": "69dae5dda5772c331cd4842d9716b894f4c2367009b7627369ae142b85f6f312"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.4.0.dev1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d053dc63574017060eb4ba7962255ba4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 69241,
"upload_time": "2022-04-25T08:18:42",
"upload_time_iso_8601": "2022-04-25T08:18:42.803512Z",
"url": "https://files.pythonhosted.org/packages/57/81/5793ab6be099eae6608f1d380cf6d50a8f95295e13de628c0aae4c911c10/hkube_python_wrapper-2.4.0.dev1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "80c9ce2ba48e5d4450d45d8d7cd7927c",
"sha256": "70e61fc9c6399a0ceb38cc2854d3c424fd46e541b260335cfb062ee3c7542197"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.4.0.dev1.tar.gz",
"has_sig": false,
"md5_digest": "80c9ce2ba48e5d4450d45d8d7cd7927c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45352,
"upload_time": "2022-04-25T08:18:44",
"upload_time_iso_8601": "2022-04-25T08:18:44.501912Z",
"url": "https://files.pythonhosted.org/packages/1e/c0/d4ba7305c372223ff84bf84ab9ad0939d156b19006a45d77b3228080d8a2/hkube_python_wrapper-2.4.0.dev1.tar.gz",
"yanked": false,
"yanked_reason": null
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "35a094f6d0368dd586e05ad7a02f8b11",
"sha256": "babd6a310ac88b996b26907690f55822e8f0ce3dbac3492b204c08799eca19c1"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "35a094f6d0368dd586e05ad7a02f8b11",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 68851,
"upload_time": "2022-02-28T15:17:25",
"upload_time_iso_8601": "2022-02-28T15:17:25.915778Z",
"url": "https://files.pythonhosted.org/packages/46/f3/dd80c2d83fd587ecaeb5f19f06352e811338e18e9aba316315f8d68abf0a/hkube_python_wrapper-2.3.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f661573caf4637a47495215a776e0727",
"sha256": "176bd56a1f3ec0e99b1257a74606e79a948ffb093cb3ca8f5b4a0d16b09391fe"
},
"downloads": -1,
"filename": "hkube_python_wrapper-2.3.0.tar.gz",
"has_sig": false,
"md5_digest": "f661573caf4637a47495215a776e0727",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45153,
"upload_time": "2022-02-28T15:17:27",
"upload_time_iso_8601": "2022-02-28T15:17:27.617864Z",
"url": "https://files.pythonhosted.org/packages/06/93/2070fe773e25b189e3867e0b601a2b696da94d1ed39dded90cd1a605597e/hkube_python_wrapper-2.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"vulnerabilities": []
}