Metadata-Version: 2.1
Name: py-imessage-shortcuts
Version: 1.0.0
Summary: Send iMessages using Python through the Shortcuts app.
Home-page: https://github.com/kevinschaich/py-imessage-shortcuts
Author: Kevin Schaich
Author-email: schaich.kevin@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/kevinschaich/py-imessage-shortcuts/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# `py-imessage-shortcuts`

Send iMessages using Python through the Shortcuts app.

Requires macOS Monterey (macOS 12) or later. Compatible with Apple Silicon including M1, M1 Pro, & M1 Max.

## Installation

1. Download the `send-imessage.shortcut` file from this repository and open it using Finder.
2. Click the blue **Add Shortcut** button (you can use the 3-dot menu to inspect actions if desire).
3. Install the python package:

```
pip install py-imessage-shortcuts
```

## Usage

```python
import imessage

imessage.send(['+1 555-555-5555'], 'Hello World!')
```


