Metadata-Version: 2.1
Name: rpipe
Version: 2.2.0
Summary: A little python remote pipe server and client.
License: GPLv3
Project-URL: Homepage, https://github.com/zwimer/RPipe
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: marshmallow-dataclass[enum,union]
Requires-Dist: pycryptodomex
Requires-Dist: requests
Requires-Dist: flask
Requires-Dist: waitress

# RPipe
A little python remote pipe server and client.

# Install

`pip install rpipe`

# Usage

Before anything else, you should set your pipe server URL and default channel (the default channel can be any string)
```bash
rpipe --url <url> -c <channel> --save_config
```

### Sending
```bash
echo "abc" | rpipe
```

### Receiving
```bash
rpipe
```

### Custom URL or channel
Both sending and receiving support the command line options `-c`/`--channel` and `-u`/`--url` to use a different channel or url than is saved.


# Server

Start the server via:
```bash
rpipe_server <port>
```
