Metadata-Version: 2.4
Name: ssh-channel
Version: 1.0.0
Summary: Send data back through SSH connections using terminal escape sequences
Author-email: "@readwithai" <talwrii@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/ssh-channel
Project-URL: Repository, https://github.com/yourusername/ssh-channel.git
Project-URL: Issues, https://github.com/yourusername/ssh-channel/issues
Keywords: ssh,terminal,escape-sequences,osc,clipboard
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: System :: Networking
Classifier: Topic :: Terminals
Classifier: Topic :: System :: Systems Administration
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: mypy; extra == "dev"

# ssh-channel
Send data back through an ssh connection through escape codes.

## Installation
You can install `ssh-channel` with pipx.

```
pipx install ssh-channel
```

## Usage
Wrap your ssh session (or your bash session) with `ssh-channel-receive`

```
ssh-channel-receive ssh server
```

In `~/.config/ssh-channel.conf` add a handler command like so:

```
message:cat > /tmp/message
```

Then will ssh is running you can can run:
```
echo hello | ssh-channel-send message
```










