cloudmesh-ssh


Namecloudmesh-ssh JSON
Version 5.0.1 PyPI version JSON
download
home_page
SummaryAn example cloudmesh command
upload_time2023-12-27 04:32:44
maintainer
docs_urlNone
author
requires_python>=3.8
licenseApache License Version 2.0, January 2004 http://www.apache.org/licenses/ Copyright 2017-2021 Gregor von Laszewski, Indiana University Copyright 2021,2022 Gregor von Laszewski, University of Virginia Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
keywords helper library cloudmesh
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Cloudmesh Command ssh

[![GitHub Repo](https://img.shields.io/badge/github-repo-green.svg)](https://github.com/cloudmesh/cloudmesh-ssh)
[![image](https://img.shields.io/pypi/pyversions/cloudmesh-ssh.svg)](https://pypi.org/project/cloudmesh-ssh)
[![image](https://img.shields.io/pypi/v/cloudmesh-ssh.svg)](https://pypi.org/project/cloudmesh-ssh/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

[![General badge](https://img.shields.io/badge/Status-Production-<COLOR>.svg)](https://shields.io/)
[![GitHub issues](https://img.shields.io/github/issues/cloudmesh/cloudmesh-ssh.svg)](https://github.com/cloudmesh/cloudmesh-ssh/issues)
[![Contributors](https://img.shields.io/github/contributors/cloudmesh/cloudmesh-ssh.svg)](https://github.com/cloudmesh/cloudmesh-ssh/graphs/contributors)
[![General badge](https://img.shields.io/badge/Other-repos-<COLOR>.svg)](https://github.com/cloudmesh/cloudmesh)


[![Linux](https://img.shields.io/badge/OS-Linux-orange.svg)](https://www.linux.org/)
[![macOS](https://img.shields.io/badge/OS-macOS-lightgrey.svg)](https://www.apple.com/macos)
[![Windows](https://img.shields.io/badge/OS-Windows-blue.svg)](https://www.microsoft.com/windows)



## Manual Page

<!-- START-MANUAL -->
```
Command ssh
===========

::

    Usage:
        ssh config list [--output=OUTPUT]
        ssh config add NAME IP [USER] [KEY]
        ssh config delete NAME

    Arguments:
      NAME        Name or ip of the machine to log in
      list        Lists the machines that are registered and
                  the commands to login to them
      PARAMETERS  Register te resource and add the given
                  parameters to the ssh config file.  if the
                  resource exists, it will be overwritten. The
                  information will be written in /.ssh/config
      USER        The username for the ssh resource
      KEY         The location of the public keye used for
                  authentication to the host

    Options:
       --output=OUTPUT   the format in which this list is given
                         formats includes cat, table, json, yaml,
                         dict. If cat is used, it is just printed as
                         is. [default: table]

    Description:
        ssh config list
            lists the hostsnames that are present in the ~/.ssh/config file

        ssh config add NAME IP [USER] [KEY]
            registers a host i ~/.ssh/config file
            Parameters are attribute=value pairs

        ssh config delete NAME
            deletes the named host from the ssh config file

    Examples:

         ssh config add blue 192.168.1.245 gregor

             Adds the following to the !/.ssh/config file

             Host blue
                  HostName 192.168.1.245
                  User gergor
                  IdentityFile ~/.ssh/id_rsa.pub

```
<!-- STOP-MANUAL -->

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "cloudmesh-ssh",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Gregor von Laszewski <laszewski@gmail.com>",
    "keywords": "helper library,cloudmesh",
    "author": "",
    "author_email": "Gregor von Laszewski <laszewski@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/63/ad/578f934b60d3354532b67fab2be8ac460aaf87f6d2a73cf97df22fe936da/cloudmesh-ssh-5.0.1.tar.gz",
    "platform": null,
    "description": "# Cloudmesh Command ssh\n\n[![GitHub Repo](https://img.shields.io/badge/github-repo-green.svg)](https://github.com/cloudmesh/cloudmesh-ssh)\n[![image](https://img.shields.io/pypi/pyversions/cloudmesh-ssh.svg)](https://pypi.org/project/cloudmesh-ssh)\n[![image](https://img.shields.io/pypi/v/cloudmesh-ssh.svg)](https://pypi.org/project/cloudmesh-ssh/)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n[![General badge](https://img.shields.io/badge/Status-Production-<COLOR>.svg)](https://shields.io/)\n[![GitHub issues](https://img.shields.io/github/issues/cloudmesh/cloudmesh-ssh.svg)](https://github.com/cloudmesh/cloudmesh-ssh/issues)\n[![Contributors](https://img.shields.io/github/contributors/cloudmesh/cloudmesh-ssh.svg)](https://github.com/cloudmesh/cloudmesh-ssh/graphs/contributors)\n[![General badge](https://img.shields.io/badge/Other-repos-<COLOR>.svg)](https://github.com/cloudmesh/cloudmesh)\n\n\n[![Linux](https://img.shields.io/badge/OS-Linux-orange.svg)](https://www.linux.org/)\n[![macOS](https://img.shields.io/badge/OS-macOS-lightgrey.svg)](https://www.apple.com/macos)\n[![Windows](https://img.shields.io/badge/OS-Windows-blue.svg)](https://www.microsoft.com/windows)\n\n\n\n## Manual Page\n\n<!-- START-MANUAL -->\n```\nCommand ssh\n===========\n\n::\n\n    Usage:\n        ssh config list [--output=OUTPUT]\n        ssh config add NAME IP [USER] [KEY]\n        ssh config delete NAME\n\n    Arguments:\n      NAME        Name or ip of the machine to log in\n      list        Lists the machines that are registered and\n                  the commands to login to them\n      PARAMETERS  Register te resource and add the given\n                  parameters to the ssh config file.  if the\n                  resource exists, it will be overwritten. The\n                  information will be written in /.ssh/config\n      USER        The username for the ssh resource\n      KEY         The location of the public keye used for\n                  authentication to the host\n\n    Options:\n       --output=OUTPUT   the format in which this list is given\n                         formats includes cat, table, json, yaml,\n                         dict. If cat is used, it is just printed as\n                         is. [default: table]\n\n    Description:\n        ssh config list\n            lists the hostsnames that are present in the ~/.ssh/config file\n\n        ssh config add NAME IP [USER] [KEY]\n            registers a host i ~/.ssh/config file\n            Parameters are attribute=value pairs\n\n        ssh config delete NAME\n            deletes the named host from the ssh config file\n\n    Examples:\n\n         ssh config add blue 192.168.1.245 gregor\n\n             Adds the following to the !/.ssh/config file\n\n             Host blue\n                  HostName 192.168.1.245\n                  User gergor\n                  IdentityFile ~/.ssh/id_rsa.pub\n\n```\n<!-- STOP-MANUAL -->\n",
    "bugtrack_url": null,
    "license": "Apache License Version 2.0, January 2004 http://www.apache.org/licenses/  Copyright 2017-2021 Gregor von Laszewski, Indiana University Copyright 2021,2022 Gregor von Laszewski, University of Virginia  Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ",
    "summary": "An example cloudmesh command",
    "version": "5.0.1",
    "project_urls": {
        "Changelog": "https://github.com/cloudmesh/cloudmesh-ssh/blob/main/CHANGELOG.md",
        "Documentation": "https://github.com/cloudmesh/cloudmesh-ssh/blob/main/README.md",
        "Homepage": "https://github.com/cloudmesh/cloudmesh-ssh",
        "Issues": "https://github.com/cloudmesh/cloudmesh-ssh/issues",
        "Repository": "https://github.com/cloudmesh/cloudmesh-ssh.git"
    },
    "split_keywords": [
        "helper library",
        "cloudmesh"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa765b14a5b5cdca18ca06e05459ce49b50487f6e3e74e8c9b0223f8a826c163",
                "md5": "28626d811259045698af67deb0ef1765",
                "sha256": "cfda2449f371c06fa85149b5998254e10e8505577c5cdee9a3070724c64fdc95"
            },
            "downloads": -1,
            "filename": "cloudmesh_ssh-5.0.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "28626d811259045698af67deb0ef1765",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.8",
            "size": 5435,
            "upload_time": "2023-12-27T04:32:42",
            "upload_time_iso_8601": "2023-12-27T04:32:42.404591Z",
            "url": "https://files.pythonhosted.org/packages/fa/76/5b14a5b5cdca18ca06e05459ce49b50487f6e3e74e8c9b0223f8a826c163/cloudmesh_ssh-5.0.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63ad578f934b60d3354532b67fab2be8ac460aaf87f6d2a73cf97df22fe936da",
                "md5": "aaeded46c3587b1e9126dc77b5acd57f",
                "sha256": "69b6545d4ea15b348ecf6e9ab384fab9df430217b88040598779c6f69a5ee79f"
            },
            "downloads": -1,
            "filename": "cloudmesh-ssh-5.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "aaeded46c3587b1e9126dc77b5acd57f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 5925,
            "upload_time": "2023-12-27T04:32:44",
            "upload_time_iso_8601": "2023-12-27T04:32:44.160463Z",
            "url": "https://files.pythonhosted.org/packages/63/ad/578f934b60d3354532b67fab2be8ac460aaf87f6d2a73cf97df22fe936da/cloudmesh-ssh-5.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-27 04:32:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cloudmesh",
    "github_project": "cloudmesh-ssh",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "cloudmesh-ssh"
}
        
Elapsed time: 0.16070s