Metadata-Version: 2.4
Name: flipboard
Version: 0.3.0
Summary: Apply transformations to text on the clipboard
License-Expression: MIT
License-File: LICENSE
Author: chris48s
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: click (>=8.0.1)
Requires-Dist: pyperclip (>=1.8.2)
Requires-Dist: xmlformatter (>=0.2.3)
Project-URL: Home, https://github.com/chris48s/flipboard
Project-URL: Source, https://github.com/chris48s/flipboard
Description-Content-Type: text/markdown

# flipboard

CLI tool for applying useful transformations to text on the clipboard

## Usage

### copy text to the clipboard: 

```
cat in.txt > flipboard stdin
flipboard stdin < in.txt
```

### apply transformations:

```
flipboard [encode|decode] [base64|url]
flipboard [minify|pprint] [json|xml]
flipboard trim
```

### write out clipboard contents:

```
flipboard stdout
flipboard stdout > out.txt
```

