bitssh


Namebitssh JSON
Version 2.7.0 PyPI version JSON
download
home_pageNone
SummaryA New and Modern SSH connector written in Python.
upload_time2024-07-02 11:40:55
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT
keywords bitssh sshmanager commandline
VCS
bugtrack_url
requirements rich path inquirer bitssh setuptools
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # bitssh

[![GitHub issues](https://img.shields.io/github/issues/Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh)
[![GitHub forks](https://img.shields.io/github/forks/Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh/network)
[![GitHub stars](https://img.shields.io/github/stars/Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh)
[![GitHub license](https://img.shields.io/github/license/Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh/blob/main/LICENSE)
[![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) ![contributions welcome](https://img.shields.io/static/v1.svg?label=Contributions&message=Welcome&color=0059b3&style=flat-square) ![GitHub contributors](https://img.shields.io/github/contributors-anon/Mr-Sunglasses/bitssh)

A New and Modern SSH connector written in Python.

Terminal user interface for SSH. It uses ~/.ssh/config to list and connect to hosts.

<p align="center">
    <img src="https://i.ibb.co/5Wm4PNh/bitssh-logo.png" width="320" height="220">
</p>

## Demo

[![bitsshdemo](https://s12.gifyu.com/images/SWxC6.gif)](https://gifyu.com/image/SWxC6)

## Installation

Install my-project with pip

```bash
  pip3 install bitssh

  bitssh
```

Install from source

```bash
  git clone https://github.com/Mr-Sunglasses/bitssh

  cd bitssh

  python3 -m pip3 install .

  bitssh
```

# Troubleshooting

## [...]/.ssh/config: no such file or directory

- Check if you have `~/.ssh/config` file
- If you don't, create it with `touch ~/.ssh/config`

Here's a sample `~/.ssh/config` file that is recognized by bitssh:

```nginx
Host abc
	Hostname xxx.xx.xx.xx
	User test1
	port 22

Host pqr
	Hostname ec2-xxx-xxx-xxx-xxx.compute-1.amazonaws.com
	User ubuntu
	port 22

Host wxy
	Hostname xxx.xx.xxx.xx
	User test2
	port 22
```

You can check the [OpenBSD `ssh_config` reference](https://man.openbsd.org/ssh_config.5) for more information on how to setup `~/.ssh/config`.

## Documentation

[Documentation](docs/docs.md)

## Contributing

Contributions are always welcome!

See `contributing.md` for ways to get started.

Please adhere to this project's `code of conduct`.

## Authors

- [@Mr-Sunglasses](https://www.github.com/Mr-Sunglasses)

## License

[MIT](https://choosealicense.com/licenses/mit/)

## 💪 Thanks to all Wonderful Contributors

Thanks a lot for spending your time helping AutoType grow.
Thanks a lot! Keep rocking 🍻

[![Contributors](https://contrib.rocks/image?repo=Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh/graphs/contributors)

## 🙏 Support++

This project needs your shiny star ⭐.
Don't forget to leave a star ⭐️

[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/) [![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bitssh",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "bitssh, sshmanager, commandline",
    "author": null,
    "author_email": "Kanishk Pachauri <itskanishkp.py@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/51/10/5ddf9c9800af5bd6873957daf76fa59f9efe3a4f3fd5e344898d23cca2a2/bitssh-2.7.0.tar.gz",
    "platform": null,
    "description": "# bitssh\n\n[![GitHub issues](https://img.shields.io/github/issues/Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh)\n[![GitHub forks](https://img.shields.io/github/forks/Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh/network)\n[![GitHub stars](https://img.shields.io/github/stars/Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh)\n[![GitHub license](https://img.shields.io/github/license/Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh/blob/main/LICENSE)\n[![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) ![contributions welcome](https://img.shields.io/static/v1.svg?label=Contributions&message=Welcome&color=0059b3&style=flat-square) ![GitHub contributors](https://img.shields.io/github/contributors-anon/Mr-Sunglasses/bitssh)\n\nA New and Modern SSH connector written in Python.\n\nTerminal user interface for SSH. It uses ~/.ssh/config to list and connect to hosts.\n\n<p align=\"center\">\n    <img src=\"https://i.ibb.co/5Wm4PNh/bitssh-logo.png\" width=\"320\" height=\"220\">\n</p>\n\n## Demo\n\n[![bitsshdemo](https://s12.gifyu.com/images/SWxC6.gif)](https://gifyu.com/image/SWxC6)\n\n## Installation\n\nInstall my-project with pip\n\n```bash\n  pip3 install bitssh\n\n  bitssh\n```\n\nInstall from source\n\n```bash\n  git clone https://github.com/Mr-Sunglasses/bitssh\n\n  cd bitssh\n\n  python3 -m pip3 install .\n\n  bitssh\n```\n\n# Troubleshooting\n\n## [...]/.ssh/config: no such file or directory\n\n- Check if you have `~/.ssh/config` file\n- If you don't, create it with `touch ~/.ssh/config`\n\nHere's a sample `~/.ssh/config` file that is recognized by bitssh:\n\n```nginx\nHost abc\n\tHostname xxx.xx.xx.xx\n\tUser test1\n\tport 22\n\nHost pqr\n\tHostname ec2-xxx-xxx-xxx-xxx.compute-1.amazonaws.com\n\tUser ubuntu\n\tport 22\n\nHost wxy\n\tHostname xxx.xx.xxx.xx\n\tUser test2\n\tport 22\n```\n\nYou can check the [OpenBSD `ssh_config` reference](https://man.openbsd.org/ssh_config.5) for more information on how to setup `~/.ssh/config`.\n\n## Documentation\n\n[Documentation](docs/docs.md)\n\n## Contributing\n\nContributions are always welcome!\n\nSee `contributing.md` for ways to get started.\n\nPlease adhere to this project's `code of conduct`.\n\n## Authors\n\n- [@Mr-Sunglasses](https://www.github.com/Mr-Sunglasses)\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n\n## \ud83d\udcaa Thanks to all Wonderful Contributors\n\nThanks a lot for spending your time helping AutoType grow.\nThanks a lot! Keep rocking \ud83c\udf7b\n\n[![Contributors](https://contrib.rocks/image?repo=Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh/graphs/contributors)\n\n## \ud83d\ude4f Support++\n\nThis project needs your shiny star \u2b50.\nDon't forget to leave a star \u2b50\ufe0f\n\n[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/) [![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg)](https://forthebadge.com)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A New and Modern SSH connector written in Python.",
    "version": "2.7.0",
    "project_urls": {
        "Docs": "https://github.com/Mr-Sunglasses/bitssh/blob/master/docs/docs.md",
        "Homepage": "https://github.com/Mr-Sunglasses/bitssh"
    },
    "split_keywords": [
        "bitssh",
        " sshmanager",
        " commandline"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "663206dc199f21ad97af26d98b1332b776c5fed5b8c8d83fbf37f34210ca8064",
                "md5": "7977888f9c33c335d15b407efc15d749",
                "sha256": "b74b3aa6bf29f2ac6465c8a6be0a47e2d2f76e4bb19dbd26772cab9ae1cbcdf0"
            },
            "downloads": -1,
            "filename": "bitssh-2.7.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7977888f9c33c335d15b407efc15d749",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 6823,
            "upload_time": "2024-07-02T11:40:54",
            "upload_time_iso_8601": "2024-07-02T11:40:54.172321Z",
            "url": "https://files.pythonhosted.org/packages/66/32/06dc199f21ad97af26d98b1332b776c5fed5b8c8d83fbf37f34210ca8064/bitssh-2.7.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51105ddf9c9800af5bd6873957daf76fa59f9efe3a4f3fd5e344898d23cca2a2",
                "md5": "1b77a31fb1514964607052896d57f613",
                "sha256": "8b9784611869138d6d293e5a807b41dcec600acfbc917f1af92f9fbc467ac800"
            },
            "downloads": -1,
            "filename": "bitssh-2.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1b77a31fb1514964607052896d57f613",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 7658,
            "upload_time": "2024-07-02T11:40:55",
            "upload_time_iso_8601": "2024-07-02T11:40:55.428947Z",
            "url": "https://files.pythonhosted.org/packages/51/10/5ddf9c9800af5bd6873957daf76fa59f9efe3a4f3fd5e344898d23cca2a2/bitssh-2.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-02 11:40:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Mr-Sunglasses",
    "github_project": "bitssh",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "rich",
            "specs": [
                [
                    "~=",
                    "13.7.0"
                ]
            ]
        },
        {
            "name": "path",
            "specs": [
                [
                    "~=",
                    "16.9.0"
                ]
            ]
        },
        {
            "name": "inquirer",
            "specs": [
                [
                    "~=",
                    "3.2.1"
                ]
            ]
        },
        {
            "name": "bitssh",
            "specs": [
                [
                    "~=",
                    "2.6.0"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    "~=",
                    "69.0.3"
                ]
            ]
        }
    ],
    "lcname": "bitssh"
}
        
Elapsed time: 8.44846s