Metadata-Version: 2.1
Name: pyXhWinClipTool
Version: 0.0.4
Summary: python windows clip tools(calling native windows command
Home-page: https://github.com/xh-dev-py/pyXhWinClipTool
Author: xethhung
Author-email: pypi@xethh.dev
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: dev

# PyXhWinClipTool

# Installation
```python_script
pip install pyXhWinClipTool -U

# Or

pip3 install pyXhWinClipTool -U
```

# Demo
```shell
# Help
python -m pyXhWinClipTool --help

# Copy to clipboard
echo "msg" | python -m pyXhWinClipTool --copy 
# Or
echo "msg" | python -m pyXhWinClipTool -c 

# Retrieve data from clipboard
python -m pyXhWinClipTool --paste 
# Or
python -m pyXhWinClipTool -p
```

# Source Description
The pyXhWinClipTool is simple. It is just a wrapper to windows existing command for operate with clipboard.

## Copy
In windows, we could use command 'clip' to copy text to clipboard.
e.g.
```
echo "hihi" | clip
```

## Paste
In windows, we could use command 'powershell' to retrieve text from clipboard.
e.g.
```
powershell get-clipboard
```


