Metadata-Version: 2.1
Name: mac_imessage
Version: 0.3.0
Summary: Python tools for sending iMessages / SMS on a Mac
Home-page: https://pypi.org/project/mac_imessage/
Author: James Kabbes
Author-email: james.kabbes@gmail.com
Project-URL: GitHub, https://github.com/jameskabbes/imessage
Project-URL: Documentation, https://jameskabbes.github.io/imessage
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE

# imessage

Python tools for sending iMessage/SMS message from a Mac. Check out the blog post on medium related to this repository: [Medium](https://medium.com/@jameskabbes/sending-imessages-with-python-on-a-mac-b77b7dd6e371)

[PyPI](https://pypi.org/project/mac_imessage)

<br>

# Installation

`pip install mac_imessage`

<br>

# Running main

```
python -m mac_imessage
```

<br>

# Usage

```python
import mac_imessage
```

## Basic Usage

Check out `utils.py` for the most basic functionality

```python
mac_imessage.send(
    message='This is a test message',
    phone_number='123-555-5555',
    medium='iMessage'
    )
```

```python
mac_imessage.send_sms(
    message='This is a test message',
    phone_number='123-555-5555',
    )
```

```python
mac_imessage.send_imessage(
    message='This is a test message',
    phone_number='123-555-5555',
    )
```

<br>

# Author

James Kabbes
