{ "info": { "author": "mullerhai", "author_email": "hai710459649@foxmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering" ], "description": "DSTL\n====\n\nhttps://github.com/mullerhai/sshjumphive\n\nNote: this repo is not supported. License is MIT.\n\n\n.. \n\n image:: ssh_jump_hive.jpg\n.. image:: https://github.com/mullerhai/sshjumphive/blob/master/img/logo.jpeg\n\n.. contents::\n\nInstall [sorry Mircosoft Windows System cannot use it]\n------------\n\n: pip install -U ssh-jump-hive [Now Version is 0.3.5]\n\n - python Version >= 3.5\n - sasl>=0.2.1\n - thrift>=0.11.0\n - thrift-sasl>=0.3.0\n - paramiko>=2.4.1\n - selectors>=0.0.14\n\n\n\nUse in Unix System Terminal[centos macos ubuntu]\n------------\n\n: jumps \n - default param\n: parameter:\n - @click.option('-jh', '--jumphost', default=\"***\", help='Jump Gateway Server host \u8df3\u677f\u673assh \u4e3b\u673a\u540d, \u9ed8\u8ba4117.48.195.186')\n - @click.option('-jp', '--jumpport', default=2222, help='Jump Gateway Server port\u8df3\u677f\u673assh\u767b\u5f55\u7aef\u53e3\u53f7, \u9ed8\u8ba42222')\n - @click.option('-ju', '--jumpuser', default='dm', help='Jump Gateway Server login user \u8df3\u677f\u673a ssh\u767b\u5f55\u7528\u6237\u540d')\n - @click.option('-jpd', '--jumppwd', default=\"***\", help='Jump Gateway Server login user password \u8df3\u677f\u673a\u767b\u5f55\u7528\u6237\u5bc6\u7801')\n - @click.option('-th', '--tunnelhost', default='172.16.16.32', help='ssh-tunnel \u96a7\u9053 host ')\n - @click.option('-tp', '--tunnelappport', default=10000, help='ssh-tunnel Application port\u96a7\u9053 \u76ee\u6807\u7a0b\u5e8f\u7684\u7aef\u53e3\u53f7 \u9ed8\u8ba4\u4e3a hive 10000 ')\n - @click.option('-lh', '--localhost', default='127.0.0.1', help='localhost\u672c\u673a host ,\u9ed8\u8ba4127.0.0.1 ')\n - @click.option('-lp', '--localbindport', default=\"4230\", help='localbindport \u672c\u673a \u88ab\u7ed1\u5b9a\u7684\u7aef\u53e3\u53f7')\n - @click.option('-dt', '--daemonsecond', default=\"21600\", help='ssh_tunnel_daemon_session_hold_on_second six hours, ssh \u96a7\u9053 \u540e\u53f0\u7ebf\u7a0b \u4fdd\u6301\u65f6\u95f4 \u9ed8\u8ba4\u4e3a\u516d\u5c0f\u65f6')\n\n.. image:: https://github.com/mullerhai/sshjumphive/blob/master/img/runshell.jpeg\n\n\nUse in Unix System Terminal Run GUI[centos macos ubuntu]\n------------\n: jumpgui\n \u00a0 - you will see the \u00a0GUI like this\n.. image:: https://github.com/mullerhai/sshjumphive/blob/master/img/rungui.jpg\n\n\nIf you Buy the SSH_Tunnel for mac [maybe feel Expensive]\n------------\n\n.. image:: https://github.com/mullerhai/sshjumphive/blob/master/img/SSH_Tunnel_mac.jpg\n\nObject types\n------------\n\nNote that ssh_jump_hive is an tools can jump the jump machine to connect hive get hive data to pandas dataframe:\n\n- 0: hive_client for simple connect hive server with no jump server\n- 1: Jump_Tunnel just for connect hive server with jump server separete\n- 2: SSH_Tunnel for get ssh tunnel channel\n\n\nGeneral approach\n----------------\n\nif you want to use it ,you need to know some things\nfor example these parameters [ jumphost,jumpport,jumpuser,jumppwd,tunnelhost,tunnelAPPport,localhost,localbindport]\nfor hive server you also need to know params [localhost, hiveusername, hivepassword, localbindport,database, auth]\nfor query hive data you need to know params [ table, query_fileds_list, partions_param_dict, query_limit]\n\nif your hive server has jump server separete\uff0c you need do like this\n[\n::\n from ssh_jump_hive import Jump_Tunnel_HIVE\n import pandas as pd\n ## get hive_tunnel_client_session\n def gethive():\n jumphost = '117.*****.176'\n jumpport = 2222\n jumpuser = 'dm'\n jumppwd = '&&&&&&'\n tunnelhost = '172.**.16.32'\n tunnelhiveport = 10000\n localhost = '127.0.0.1'\n localbindport = 4800\n username = 'muller'\n auth = 'LDAP'\n password = \"abc123.\"\n database = 'fkdb'\n table = 'tab_client_label'\n partions_param_dict = {'client_nmbr': 'AA75', 'batch': 'p1'}\n query_fileds_list = ['gid', 'realname', 'card']\n querylimit = 1000\n jump = Jump_Tunnel_HIVE(jumphost, jumpport, jumpuser, jumppwd, tunnelhost, tunnelhiveport, localhost, localbindport,\n username, password)\n return jump\n\n ## query some fileds by table name and partitions params\n def demo1():\n table = 'tab_client_label'\n partions_param_dict = {'client_nmbr': 'AA75', 'batch': 'p1'}\n query_fileds_list = ['gid', 'realname', 'card']\n querylimit = 1000\n jump=gethive()\n df2=jump.get_JumpTunnel_df(table,partions_param_dict,query_fileds_list,querylimit)\n return df2\n ## query all fileds by table name and partitions params\n def demo2():\n table = 'tab_client_label'\n partions_param_dict = {'client_nmbr': 'AA75', 'batch': 'p1'}\n jump =gethive()\n df2 = jump.get_JumpTunnel_table_partitions_df(table,partions_param_dict,1000)\n return df2\n ## use hsql to query data\n def demo3():\n jump = gethive()\n hsql=\"select * from fkdb.tab_client_label where client_nmbr= 'AA75' and batch= 'p1' limit 500\"\n df2=jump.get_JumpTunnel_hsql_df(hsql)\n return df2\n ## initail the instance to query\n df3=demo2()\n print(df3.shape)\n print(df3.columns)\n print(df3.head(100))\n]\n\n\nUNet network with batch-normalization added, training with Adam optimizer with\na loss that is a sum of 0.1 cross-entropy and 0.9 dice loss.\nInput for UNet was a 116 by 116 pixel patch, output was 64 by 64 pixels,\nso there were 16 additional pixels on each side that just provided context for\nthe prediction.\nBatch size was 128, learning rate was set to 0.0001\n(but loss was multiplied by the batch size).\nLearning rate was divided by 5 on the 25-th epoch\nand then again by 5 on the 50-th epoch,\nmost models were trained for 70-100 epochs.\nPatches that formed a batch were selected completely randomly across all images.\nDuring one epoch, network saw patches that covered about one half\nof the whole training set area. Best results for individual classes\nwere achieved when training on related classes, for example buildings\nand structures, roads and tracks, two kinds of vehicles.\n\nAugmentations included small rotations for some classes\n(\u00b110-25 degrees for houses, structures and both vehicle classes),\nfull rotations and vertical/horizontal flips\nfor other classes. Small amount of dropout (0.1) was used in some cases.\nAlignment between channels was fixed with the help of\n``cv2.findTransformECC``, and lower-resolution layers were upscaled to\nmatch RGB size. In most cases, 12 channels were used (RGB, P, M),\nwhile in some cases just RGB and P or all 20 channels made results\nslightly better.\n\n\nValidation\n----------\n\nValidation was very hard, especially for both water and both vehicle\nclasses. In most cases, validation was performed on 5 images\n(6140_3_1, 6110_1_2, 6160_2_1, 6170_0_4, 6100_2_2), while other 20 were used\nfor training. Re-training the model with the same parameters on all 25 images\nimproved LB score.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/mullerhai/sshjumphive", "keywords": "hive,ssh-tunnel,hfds,machine learning", "license": "Apache 2.0", "maintainer": "muller helen", "maintainer_email": "hai710459649@foxmail.com", "name": "ssh-jump-hive", "package_url": "https://pypi.org/project/ssh-jump-hive/", "platform": "all", "project_url": "https://pypi.org/project/ssh-jump-hive/", "project_urls": { "Homepage": "https://github.com/mullerhai/sshjumphive" }, "release_url": "https://pypi.org/project/ssh-jump-hive/0.3.7/", "requires_dist": [ "pandas (>=0.20.3)", "PyHive (>=0.5.1)", "paramiko (>=2.4.1)", "selectors (>=0.0.14)", "sasl (>=0.2.1)", "thrift (>=0.11.0)", "thrift-sasl (>=0.3.0)", "hdfs (>=2.1.0)", "sklearn-pandas (>=1.6.0)", "scikit-learn (>=0.19.1)", "click (>=6.7)" ], "requires_python": "", "summary": "ssh_jump_hive is a tools could jump the jump machine to connect hive get hive data to pandas dataframe", "version": "0.3.7" }, "last_serial": 3813030, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "ef0b775bc568f0f27cd12559a3a1db76", "sha256": "07c6774530a1495b959b2b88437aa2dc396995bef99d7ea569d1a22721009968" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef0b775bc568f0f27cd12559a3a1db76", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2813, "upload_time": "2018-04-23T12:27:06", "url": "https://files.pythonhosted.org/packages/81/90/9151c5f0870179cbddf79e5a46a1e38e9c359b5d6ce68f1d5735a941a35b/ssh_jump_hive-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d0010e103514ebfc7d9cbd74aced67b", "sha256": "4db1dea9220cc8234b470ef6b95a87776e352d85e1436ffa43ed92a2d0d9bc30" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.1.tar.gz", "has_sig": false, "md5_digest": "1d0010e103514ebfc7d9cbd74aced67b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2981, "upload_time": "2018-04-23T12:27:08", "url": "https://files.pythonhosted.org/packages/d9/76/2c5fb9c88eab39f33298f1bc01f2d43e092454def161a0177703cf9bffe9/ssh_jump_hive-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "a5df700d594193d6806169dea67a0cf0", "sha256": "5b4888c0f652543a645254ba7786bdfb3bbabef3ccac8ab6e35319327e4aa628" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5df700d594193d6806169dea67a0cf0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2812, "upload_time": "2018-04-23T12:38:29", "url": "https://files.pythonhosted.org/packages/fb/71/4db05cc70987b35d41693a67c317a433bbf3b8ad9d3614ff4a22d163f7eb/ssh_jump_hive-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eec9e78a5918ebc5ac45597ca2149b06", "sha256": "74e42e8f270b45dc9213a0cee7879044cafeea77d87c68d384df8298c3c4f933" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.2.tar.gz", "has_sig": false, "md5_digest": "eec9e78a5918ebc5ac45597ca2149b06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2983, "upload_time": "2018-04-23T12:38:30", "url": "https://files.pythonhosted.org/packages/e6/f3/5282ca08ca68ca88fb37439c9a412a32f4e4d072d1efced8d283b0e34dfe/ssh_jump_hive-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "9b2503038663585088168700cacd3b85", "sha256": "c7a67713d03d458d18a5f40ba733da4a822716b342fdfb67e960ca463b4db375" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b2503038663585088168700cacd3b85", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2813, "upload_time": "2018-04-23T12:46:10", "url": "https://files.pythonhosted.org/packages/ba/1f/e5004422a5f1014a7f74dd7d982720baf55f14d3afad8e018c79a9d8e0fa/ssh_jump_hive-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "db944c3538ee2e45ec72af2d5e1f4ea7", "sha256": "26ccba60a3735ccd761647ad80da17c74628ad5bd3687ea6fded7bdab0ef116a" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.3.tar.gz", "has_sig": false, "md5_digest": "db944c3538ee2e45ec72af2d5e1f4ea7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2983, "upload_time": "2018-04-23T12:46:11", "url": "https://files.pythonhosted.org/packages/c6/c6/c4804e7f6ff1b14ca90733f3f09239fb9831270643f74cdfae53add8bde8/ssh_jump_hive-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "1d30ef83ed7b6e6cf067a800657a89e8", "sha256": "cf240cbe88a47d115f5d44a4bbf6eb5a76a9138ebe463d24d135819c3307c126" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1d30ef83ed7b6e6cf067a800657a89e8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2790, "upload_time": "2018-04-23T12:49:47", "url": "https://files.pythonhosted.org/packages/49/ea/7ad892e9d24969bcddef3038128a57937019b6bafd688a4f62752706b3cb/ssh_jump_hive-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23b7acb1ba2c15c59bdbd2ba0f17c6e4", "sha256": "d6b33a682743c2a9e8cf0989b3a411091dbe4207ca9e85e7c238da39f6dd14e1" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.4.tar.gz", "has_sig": false, "md5_digest": "23b7acb1ba2c15c59bdbd2ba0f17c6e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2952, "upload_time": "2018-04-23T12:49:48", "url": "https://files.pythonhosted.org/packages/23/15/87546eddf4ea6d497f74f63f1e750176e276f95e173520c3978d18cac05e/ssh_jump_hive-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "6a805d4a5d39ee398e0f7cc8f2fcc58c", "sha256": "33d1e39c4797f6b7225405c3ac8ade0b0a73ffcbb28eb5a231110bae8b3cda62" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a805d4a5d39ee398e0f7cc8f2fcc58c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2878, "upload_time": "2018-04-24T00:38:49", "url": "https://files.pythonhosted.org/packages/b3/d7/e97bd732c1e1e1e9330307e40227df641fe56335915ec0505ec47bbd0b79/ssh_jump_hive-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2afad263613e40673432e324e632524b", "sha256": "08784a7e30975a1d73b7f7169912bcc4eaf239c5b490a6af057c24ca9032748b" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.5.tar.gz", "has_sig": false, "md5_digest": "2afad263613e40673432e324e632524b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3063, "upload_time": "2018-04-24T00:38:51", "url": "https://files.pythonhosted.org/packages/2b/48/02dd92e5bd4383ebcd4881bed741c6cabe4dbf961e35bf336aa42a0f8318/ssh_jump_hive-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "193109cbfc252abdbfd071bc3fedb2dc", "sha256": "438b5d24193c33022766831f567a583f44dac3b18cada9c49b3e007c552e421a" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "193109cbfc252abdbfd071bc3fedb2dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2878, "upload_time": "2018-04-24T01:11:36", "url": "https://files.pythonhosted.org/packages/02/10/5728aee0b54c13ee76ccb5453ada8675fdbb284c2523098ff64fbda06793/ssh_jump_hive-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43e720cb2dd54b9149baa1890152e9c8", "sha256": "bb6915852ccf2b10a71191b4eac49080d7db8da0a3eb56fd266d839ba6de9f58" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.6.tar.gz", "has_sig": false, "md5_digest": "43e720cb2dd54b9149baa1890152e9c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3064, "upload_time": "2018-04-24T01:11:36", "url": "https://files.pythonhosted.org/packages/62/a3/35db849bbb4549acb9d3555c012f20d803c3b45a437579c5b3ac88a19c3b/ssh_jump_hive-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "e5e45782de9df46644f6c573fe15ebdb", "sha256": "f418005c8738bbb6340132d97fe913fc66be4cc5b30752adc83f022512a00359" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e5e45782de9df46644f6c573fe15ebdb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2880, "upload_time": "2018-04-24T01:23:29", "url": "https://files.pythonhosted.org/packages/b6/61/a18e7e7847666103c5a50ecda216215935cac68dcbe7513bcc6ffe376b78/ssh_jump_hive-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "21e71a976932be985a34e498fff4e41f", "sha256": "c4b57f0ba65d40b10a09910062d4beed6a72632ebf36d5a19be15fdbb8fa21a9" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.7.tar.gz", "has_sig": false, "md5_digest": "21e71a976932be985a34e498fff4e41f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3064, "upload_time": "2018-04-24T01:23:31", "url": "https://files.pythonhosted.org/packages/eb/9e/663f2d8f0d3c7b5e741f41e66ea2f5f101c1177bc501276b810b91824dfd/ssh_jump_hive-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "e5fcad7606b0a8d533c7ab6a43bed18e", "sha256": "b792c7fd6881bb5246bb8faed1f87bc077c17c381ce2dc97b6bcc29db2f7389d" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e5fcad7606b0a8d533c7ab6a43bed18e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2880, "upload_time": "2018-04-24T01:27:13", "url": "https://files.pythonhosted.org/packages/83/92/3560585e56b5b422c305a48f965d67cd94f4d007921447a20ee2a79b875c/ssh_jump_hive-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12b5bc26ff221bb5eb019bf6d33607b5", "sha256": "8f48265ce8e371ef20e186c063e901b19771398a3711a0d58dbef552a9ab850e" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.8.tar.gz", "has_sig": false, "md5_digest": "12b5bc26ff221bb5eb019bf6d33607b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3069, "upload_time": "2018-04-24T01:27:15", "url": "https://files.pythonhosted.org/packages/e5/95/d86b36606114729cdfa112602cd26256cab58a4172656832698851b4121a/ssh_jump_hive-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "2339cac953c46ae6678c73ed9f9c5e36", "sha256": "6f1ab0880f00dd5a74c2a8d1b6ad193ddd4e6afcbb5f02e3c3e1e83472878f17" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2339cac953c46ae6678c73ed9f9c5e36", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2880, "upload_time": "2018-04-24T01:31:35", "url": "https://files.pythonhosted.org/packages/81/16/0c164b2fe291e1e3a50369dcf82db0042a466cbba99a0ca909320b179531/ssh_jump_hive-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc0de0949024ae6ab8cbc00779dcac32", "sha256": "84aa810a5e55e5ea774a336f10780e10e5dd278a5d27492ab567a6d8ced8d9f8" }, "downloads": -1, "filename": "ssh_jump_hive-0.1.9.tar.gz", "has_sig": false, "md5_digest": "fc0de0949024ae6ab8cbc00779dcac32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3062, "upload_time": "2018-04-24T01:31:36", "url": "https://files.pythonhosted.org/packages/ef/1c/f07dba03a692eec6c9c444f523f26c9e12620cdd8ada4f1f7630488aadda/ssh_jump_hive-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "0742c3a16e200391d09678cfb8d420c5", "sha256": "8b825cda83ba7a1343299800e2d9bde0c85a70aa5c933b2c99ed25b2f48a5eba" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0742c3a16e200391d09678cfb8d420c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2879, "upload_time": "2018-04-24T01:40:16", "url": "https://files.pythonhosted.org/packages/0b/84/655c9ad2d3c3dbbe398e7e93fc67daca7ef73fcce4846d8f2a26be2e0397/ssh_jump_hive-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "251e39c4566ea193afe8805061c8ed58", "sha256": "da06e9227b73dbd7010a39c45d1cfa6ce2a9b6087b03f268f62fc1836abde67f" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.0.tar.gz", "has_sig": false, "md5_digest": "251e39c4566ea193afe8805061c8ed58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3065, "upload_time": "2018-04-24T01:40:19", "url": "https://files.pythonhosted.org/packages/3f/6d/7506fa9068aabe4456a3f80c95198544472a45fc02a44eead85c8de514a0/ssh_jump_hive-0.2.0.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "d12e05074706fda3afd8ce33fc7ebcf6", "sha256": "3c0e040b35886c475387bd4b69a16e945d9fa40fa27317524dabc8f508644f3b" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d12e05074706fda3afd8ce33fc7ebcf6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2886, "upload_time": "2018-04-24T02:33:08", "url": "https://files.pythonhosted.org/packages/fe/b8/39255e9212f3fe979e7b040e913a4d817a6992859d8032f3720ddc77e230/ssh_jump_hive-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea4914b54ac6f28b104dbafe8a4c2f6a", "sha256": "6a8fb3de1f0c7d897b67fab6ff13f9d6135cf135017a0ea6584a28d0e3c678c0" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.3.tar.gz", "has_sig": false, "md5_digest": "ea4914b54ac6f28b104dbafe8a4c2f6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3072, "upload_time": "2018-04-24T02:33:09", "url": "https://files.pythonhosted.org/packages/54/80/33aee6cac1ab28cf44619bc1487b412bb748be89dc516ee084989f5593b8/ssh_jump_hive-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "1989577febdcc07b7d9f582060538a79", "sha256": "e7aaecf8596166b4f9c84c6f87d4fda54c1d0679ad82423a4109fb66ef28983f" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1989577febdcc07b7d9f582060538a79", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2884, "upload_time": "2018-04-24T03:07:26", "url": "https://files.pythonhosted.org/packages/eb/2a/edb8c926f72a427c82f9a1a42e6e569ece2b1e178b71dee82c7d43daec4d/ssh_jump_hive-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a66d1c177213a5887ffd95fd9ba284ea", "sha256": "7820d00d6303e233453b480b8a14e0fd25578e094d9cd9424f3d03a3e7dbe0df" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.4.tar.gz", "has_sig": false, "md5_digest": "a66d1c177213a5887ffd95fd9ba284ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3073, "upload_time": "2018-04-24T03:07:28", "url": "https://files.pythonhosted.org/packages/7e/b3/594b7c8e8f088a3a5c67a2cda6392a0b615b4b34d17ddac535094f421483/ssh_jump_hive-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "a72c7c8616007f69a50ab7bf073b0e26", "sha256": "b8a6c8ee7a67cde33693f6ec657504b6039bb23f57c96adf0bc13580a4f4db03" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a72c7c8616007f69a50ab7bf073b0e26", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2883, "upload_time": "2018-04-24T03:21:40", "url": "https://files.pythonhosted.org/packages/2e/b3/cde29b6bfd08c6614f103dc5c536e786aa16c6381010347b2853781e7e49/ssh_jump_hive-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ce756b2ad1d7d476a76489c232b0adf", "sha256": "f26fe451bcaa0f3163bf6d0c18c09fbbcea26b3cc8cecb25f89b8eb683d3d9da" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.5.tar.gz", "has_sig": false, "md5_digest": "1ce756b2ad1d7d476a76489c232b0adf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3073, "upload_time": "2018-04-24T03:21:42", "url": "https://files.pythonhosted.org/packages/05/f8/ff4aa7de36a7ad97a54ca3ca78aa61493f85924b6b9d05956b0488cca95e/ssh_jump_hive-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "946e5bceab84ad853deb1b7f3743c411", "sha256": "5dea2f45639a72b946c2efd64423fd009c2059988b2a6d23678724b94cc9f085" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "946e5bceab84ad853deb1b7f3743c411", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2885, "upload_time": "2018-04-24T03:40:40", "url": "https://files.pythonhosted.org/packages/b2/61/9e8a23ab12bf29a178c7884a38b7c84b844ee91c5075dce4714546e93e77/ssh_jump_hive-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e24a0522f2b8e17b83969b9159d986e", "sha256": "b0b8e45a7b28b6017ba18dbf17792f8d1d62498a7ecb4082fbebfa7e40fede5d" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.6.tar.gz", "has_sig": false, "md5_digest": "6e24a0522f2b8e17b83969b9159d986e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3076, "upload_time": "2018-04-24T03:40:41", "url": "https://files.pythonhosted.org/packages/b9/86/142f4f7a9689657fb2c4b049e81e316260c69d3b62deb5b84f099b944de9/ssh_jump_hive-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "91238403528178bd12a35b04d5014086", "sha256": "58cbef223c4065800a1ef56c72e16118896d23d985f4d01f3add9078d1460fe1" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "91238403528178bd12a35b04d5014086", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1504, "upload_time": "2018-04-24T06:35:38", "url": "https://files.pythonhosted.org/packages/70/5a/34cab3204465ff21f35eceb8610caea906ae16510f757d5b0b29787e2f36/ssh_jump_hive-0.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "546046344b86241ce0d56ae97051bc3d", "sha256": "ba7d1e3a18aea09ea565cca7689b410d31f9f1aa680be1378f74d4527f15fd67" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.7.tar.gz", "has_sig": false, "md5_digest": "546046344b86241ce0d56ae97051bc3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3005, "upload_time": "2018-04-24T06:35:39", "url": "https://files.pythonhosted.org/packages/eb/33/6d4d1a21eb3b79e75a3bdada929237321452810b141f4ef68e2609b79f73/ssh_jump_hive-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "e7ba6c84fe4a09f01dc58133925496eb", "sha256": "545dc4edf01e91cafebd67b3afdcb1a0d6ff9ad7a566c92f694e70f2a1247125" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7ba6c84fe4a09f01dc58133925496eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3303, "upload_time": "2018-04-24T06:55:47", "url": "https://files.pythonhosted.org/packages/9d/41/df3766f7645ab066ff0d6bfd06c2bb8c74664ebec6b9b9fcdac5ce65d25c/ssh_jump_hive-0.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df8cf98612513555045485e48486dc75", "sha256": "8ade3a6955a49b1f774f0488ab014f293cbc7b6c8fba7ef99218a17d9878dac3" }, "downloads": -1, "filename": "ssh_jump_hive-0.2.8.tar.gz", "has_sig": false, "md5_digest": "df8cf98612513555045485e48486dc75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3828, "upload_time": "2018-04-24T06:55:49", "url": "https://files.pythonhosted.org/packages/f1/13/f19b3df680e37d282fda7757a04851001859141b34b475f879732aa67f57/ssh_jump_hive-0.2.8.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "389449dd03b92cde185387875ddd2ee8", "sha256": "2f8461bf8eec3bfc5c0c48b5921de92a0c2d4b683eebcbac0bd30fa5fbec3a12" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "389449dd03b92cde185387875ddd2ee8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8429, "upload_time": "2018-04-25T03:52:26", "url": "https://files.pythonhosted.org/packages/02/55/d46d4f098204fd2336589f8fa18dbd704a9e890a36d40f5fbfc28f9951f9/ssh_jump_hive-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c1e8be6d49697acefd4f0b56bfe199fa", "sha256": "2b870bb1306cbc8ad10a0257714a7d05f9a606cfaac87f7c7b48ca68a3478be6" }, "downloads": -1, "filename": "ssh-jump_hive-0.3.0.tar.gz", "has_sig": false, "md5_digest": "c1e8be6d49697acefd4f0b56bfe199fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7366, "upload_time": "2018-04-25T03:52:27", "url": "https://files.pythonhosted.org/packages/57/64/91beb5c4310a290858745dd7c041e37f2ddba9b125f7b3140f6987543d6f/ssh-jump_hive-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "ef8102eb8983a8355601dd80faf7aa63", "sha256": "2ab3900eaea5077dcf06b44fc843dc6bbec3fae6c052231523e656a4768ed5c3" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef8102eb8983a8355601dd80faf7aa63", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9524, "upload_time": "2018-04-25T10:33:37", "url": "https://files.pythonhosted.org/packages/52/cd/29021753768289371c2e221dbfb71993a9e5a50cba0e591ca0150d2b33f8/ssh_jump_hive-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e1e8c0709fbc9cd171e926dccb12f873", "sha256": "7f91005241afa284b0076ef8255c9b4ee377de2e52dd6ab1944ae90ccab81f97" }, "downloads": -1, "filename": "ssh-jump_hive-0.3.1.tar.gz", "has_sig": false, "md5_digest": "e1e8c0709fbc9cd171e926dccb12f873", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8606, "upload_time": "2018-04-25T10:33:39", "url": "https://files.pythonhosted.org/packages/ec/c0/62e386641bbf73215807e192234574d1cd80e951385b79aefa0210564a62/ssh-jump_hive-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "aeeeac699b975cca2e7b397c0ddd53fc", "sha256": "3b3ec746c21bc3e9d59ef8013ad2a0cf1f564dc0ed6ca12beafb2713f88e803d" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aeeeac699b975cca2e7b397c0ddd53fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12848, "upload_time": "2018-04-26T07:31:23", "url": "https://files.pythonhosted.org/packages/d3/7a/016a7fd962380f8a0d398dab54292776cc05c1502fc921ec7c8407f572a2/ssh_jump_hive-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "09b921ea44fdcecefe6de1602de519b3", "sha256": "242a62c5568a7f4258444f0086db9ff7641fc32c42b9994e4ae7289218b5d7b9" }, "downloads": -1, "filename": "ssh-jump_hive-0.3.2.tar.gz", "has_sig": false, "md5_digest": "09b921ea44fdcecefe6de1602de519b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11684, "upload_time": "2018-04-26T07:31:25", "url": "https://files.pythonhosted.org/packages/cc/d8/261ba332a232587c22cc6d4476c801a22bbc184afbe36d17c2ceca157e39/ssh-jump_hive-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "4bbb29df40c24243ae6714f7ab298fdd", "sha256": "409dcbd974c38f18ca35d3fb63bcb8a2883176e5ae651cd12d620a648950cf89" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4bbb29df40c24243ae6714f7ab298fdd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12962, "upload_time": "2018-04-26T07:41:36", "url": "https://files.pythonhosted.org/packages/9d/d7/7fbf610cd0a00c12735889d6b4be9a847f2b3bd4ccce0e63fff512804840/ssh_jump_hive-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7f3a24b350d58f8a3ec5e0f76fc77cf", "sha256": "317770790d39d492796c0fc7072865e71d58be488599494228869f47760a279f" }, "downloads": -1, "filename": "ssh-jump_hive-0.3.3.tar.gz", "has_sig": false, "md5_digest": "c7f3a24b350d58f8a3ec5e0f76fc77cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11750, "upload_time": "2018-04-26T07:41:38", "url": "https://files.pythonhosted.org/packages/47/7d/8275511c543289ea178432c8fef32e0373501348699f728f76c1583bc9d9/ssh-jump_hive-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "2ba363e85f8f57ecf834620dcfb220cf", "sha256": "a6be438e474149e2960a7cdcb45113084b69254410883a622cd065bd10db24b3" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ba363e85f8f57ecf834620dcfb220cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15344, "upload_time": "2018-04-27T03:03:59", "url": "https://files.pythonhosted.org/packages/dd/6f/5d5e9e3d86d43b0d4e5019e1caaf5365183bc6a32e21b0264a203bdcfc73/ssh_jump_hive-0.3.4-py2.py3-none-any.whl" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "a9ac19be8851749eee862df3fe6551dd", "sha256": "4d9dfa31bce28b6f0d0c039142bff061dcac811657d949176b6a2fdde976c8f8" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a9ac19be8851749eee862df3fe6551dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18767, "upload_time": "2018-04-27T03:33:18", "url": "https://files.pythonhosted.org/packages/32/b4/be4f1bccef46dc4b7ecb7310c9d8eff78c6a0c40615d2bbf48e5e56ca234/ssh_jump_hive-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9eb3a78b348d42fd4e75dc93e67dc27e", "sha256": "a69ef26a37fd28581a608f0730723c5c6a0eecc678ee25f6794077c8f9a1acff" }, "downloads": -1, "filename": "ssh-jump_hive-0.3.5.tar.gz", "has_sig": false, "md5_digest": "9eb3a78b348d42fd4e75dc93e67dc27e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15308, "upload_time": "2018-04-27T03:33:20", "url": "https://files.pythonhosted.org/packages/eb/32/612a291ca51ba42312f276a7a40782dbda3141c2493a861f7ff37362b7d2/ssh-jump_hive-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "5ee0b13df3f4197ae14d01a2335fb505", "sha256": "86868efa14a0be81024591150db2c21c026c40cea98efdfbe1dfb6b7ea4b0cee" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5ee0b13df3f4197ae14d01a2335fb505", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19211, "upload_time": "2018-04-27T06:42:16", "url": "https://files.pythonhosted.org/packages/b3/53/034dc6b62edce0f93c02f7754f95f49a2c38d3b2546957df51bb4b3d6c66/ssh_jump_hive-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8aa54e75d5125ade9c18239d315f055f", "sha256": "a65597dcc6cc163bd7dd49fb6d364f1273f4d19e6f222f1ffbbeb526bcdef6b8" }, "downloads": -1, "filename": "ssh-jump_hive-0.3.6.tar.gz", "has_sig": false, "md5_digest": "8aa54e75d5125ade9c18239d315f055f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 874771, "upload_time": "2018-04-27T06:42:28", "url": "https://files.pythonhosted.org/packages/70/5e/c2a6012f94ce052fc1870aef5fe3894739eb582b1805369678f191d36982/ssh-jump_hive-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "bc5e4180b347ca27c24f2bade3632c84", "sha256": "f4704f6f10b4716b68cbbf6be0f6a07512c7db16501cff54c892c15a73c0095d" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc5e4180b347ca27c24f2bade3632c84", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19214, "upload_time": "2018-04-27T06:49:34", "url": "https://files.pythonhosted.org/packages/aa/db/581f87bd4f24a765e81e8d5057052a7c9d48166a489e8984c394b2c2fca3/ssh_jump_hive-0.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8db7236c18f37aae1631c018fc26803", "sha256": "8372e0737c22f8afaa9d698654a2fc3ecde6f0be6641c81a1639f1703e1e1f85" }, "downloads": -1, "filename": "ssh-jump_hive-0.3.7.tar.gz", "has_sig": false, "md5_digest": "c8db7236c18f37aae1631c018fc26803", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 874777, "upload_time": "2018-04-27T06:49:49", "url": "https://files.pythonhosted.org/packages/76/73/cfc29552daf2e0f9524fdbc6a3ef5d8ae97c6b5d43218cb4f259c1914318/ssh-jump_hive-0.3.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bc5e4180b347ca27c24f2bade3632c84", "sha256": "f4704f6f10b4716b68cbbf6be0f6a07512c7db16501cff54c892c15a73c0095d" }, "downloads": -1, "filename": "ssh_jump_hive-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc5e4180b347ca27c24f2bade3632c84", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19214, "upload_time": "2018-04-27T06:49:34", "url": "https://files.pythonhosted.org/packages/aa/db/581f87bd4f24a765e81e8d5057052a7c9d48166a489e8984c394b2c2fca3/ssh_jump_hive-0.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8db7236c18f37aae1631c018fc26803", "sha256": "8372e0737c22f8afaa9d698654a2fc3ecde6f0be6641c81a1639f1703e1e1f85" }, "downloads": -1, "filename": "ssh-jump_hive-0.3.7.tar.gz", "has_sig": false, "md5_digest": "c8db7236c18f37aae1631c018fc26803", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 874777, "upload_time": "2018-04-27T06:49:49", "url": "https://files.pythonhosted.org/packages/76/73/cfc29552daf2e0f9524fdbc6a3ef5d8ae97c6b5d43218cb4f259c1914318/ssh-jump_hive-0.3.7.tar.gz" } ] }