{"id":20882489,"url":"https://github.com/mr-sunglasses/bitssh","last_synced_at":"2025-05-12T18:31:02.267Z","repository":{"id":178407444,"uuid":"657748849","full_name":"Mr-Sunglasses/bitssh","owner":"Mr-Sunglasses","description":"A New and Modern SSH connector written in Python.","archived":false,"fork":false,"pushed_at":"2025-04-10T20:51:35.000Z","size":14549,"stargazers_count":16,"open_issues_count":8,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-10T21:06:08.756Z","etag":null,"topics":["hacktoberfest","ssh","terminal","terminal-based"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/bitssh/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mr-Sunglasses.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-23T18:58:08.000Z","updated_at":"2025-04-10T20:51:07.000Z","dependencies_parsed_at":"2024-04-06T23:19:57.777Z","dependency_job_id":"7a58e885-dbdb-4534-9752-4c09288df0f7","html_url":"https://github.com/Mr-Sunglasses/bitssh","commit_stats":{"total_commits":37,"total_committers":1,"mean_commits":37.0,"dds":0.0,"last_synced_commit":"24c96f14926e8cac8e7520ba0b28ba9516e5009e"},"previous_names":["mr-sunglasses/bitssh"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Sunglasses%2Fbitssh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Sunglasses%2Fbitssh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Sunglasses%2Fbitssh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mr-Sunglasses%2Fbitssh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mr-Sunglasses","download_url":"https://codeload.github.com/Mr-Sunglasses/bitssh/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253797955,"owners_count":21965981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","ssh","terminal","terminal-based"],"created_at":"2024-11-18T07:32:08.352Z","updated_at":"2025-05-12T18:31:02.253Z","avatar_url":"https://github.com/Mr-Sunglasses.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 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\u0026message=Welcome\u0026color=0059b3\u0026style=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\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://i.ibb.co/5Wm4PNh/bitssh-logo.png\" width=\"320\" height=\"220\"\u003e\n\u003c/p\u003e\n\n## Demo\n\n![bitsshdemo](artwork/demo/bitssh_demo.gif)\n\n## Installation\n\nInstall bitssh with docker\n\n```bash\n\n  docker run --rm -it -v ~/.ssh:/root/.ssh mrsunglasses/bitssh\t\n\n```\n\nInstall bitssh 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```bash\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## 💪 Thanks to all Wonderful Contributors\n\nThanks a lot for spending your time helping AutoType grow.\nThanks a lot! Keep rocking 🍻\n\n[![Contributors](https://contrib.rocks/image?repo=Mr-Sunglasses/bitssh)](https://github.com/Mr-Sunglasses/bitssh/graphs/contributors)\n\n## 🙏 Support++\n\nThis project needs your shiny star ⭐.\nDon't forget to leave a star ⭐️\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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-sunglasses%2Fbitssh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmr-sunglasses%2Fbitssh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmr-sunglasses%2Fbitssh/lists"}