Metadata-Version: 2.4
Name: copilotkey
Version: 0.1.1
Summary: Send Shift+Win+F23 (Copilot Key) with one call
Author: Daniel Kramer
Author-email: dvkramer@outlook.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# copilotkey

Tiny Python package to send **Shift+Win+F23** (the Copilot Key) when called.

## Usage
```python
from copilotkey import CopilotKey

CopilotKey()        # sends Shift+Win+F23
CopilotKey.press()  # same thing
```

## CLI
```
copilotkey   # runs the command-line entrypoint (sends the key once)
python -m copilotkey
```

## Notes
- Primary target: **Windows**. The package tries `keyboard.send("shift+windows+f23")` first (if `keyboard` installed). If not present, it falls back to a Windows API call using `ctypes`.
- The simulated keypress goes to the currently focused window.
