Metadata-Version: 2.4
Name: go-ssh
Version: 0.1.5
Summary: Smart SSH connector using fuzzy host search and auto-key upload
Home-page: https://pypi.org/project/go-ssh/
Author: Mr kumar
Author-email: mrpirate404@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: paramiko
Requires-Dist: keyring
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# go-ssh

🚀 A smart SSH connector with fuzzy search, auto key upload, and secure password storage.

## Features

- 🔍 Fuzzy match SSH hosts from `~/.ssh/config`
- ✅ Checks reachability before connecting
- 🔐 Securely store passwords with `keyring`
- 🛠️ Automatically generate and upload SSH keys via `paramiko`
- 📋 List mode for host reachability summary
- 💡 Pick interactively from matched hosts

## Installation

```bash
pip install go-ssh
```

## Usage

```bash
gossh <query>
```

### Examples

```bash
gossh beacon               # Connect to first reachable host that matches "beacon"
gossh beacon --list        # List all matches with reachability info
gossh beacon --pick        # Pick manually from matched entries
gossh --save-pass          # Save global SSH password securely
gossh beacon --pass        # Save password for this specific host
gossh beacon --user        # Save username for this specific host
```

## Requirements

- Python 3.6+
- `paramiko`, `keyring`

## License

MIT License – see [LICENSE](LICENSE) file.
