Metadata-Version: 2.1
Name: klippy
Version: 0.2.0
Summary: A command line utility that acts like a cloud clipboard.
Home-page: https://github.com/ikhurramraza/klippy
Author: Khurram Raza
Author-email: ikhurramraza@gmail.com
License: MIT
Keywords: cloud clipboard
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.0, <4
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: redis

# Klippy

![Test](https://github.com/ikhurramraza/klippy/workflows/Test/badge.svg)

A command line utility that acts like a cloud clipboard.

## Installation

```bash
pip install klippy
```

## Usage

```bash
# Find help
klippy --help
klippy configure --help
klippy copy --help
klippy paste --help

# Configure namespace name and Redis credentials
# To share a single Redis server among different people
# or have multiple clipboards, use different namespaces.
klippy configure

# Copy data to the cloud clipboard (Redis database)
klippy copy file.png
klippy copy < file.txt
echo "$PATH" | klippy copy

# Paste data from the clipboard (Redis database)
klippy paste file.png
klippy paste > file.txt
klippy paste | cat
```

## Wishlist

- Introduce clipboard history

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details



