Metadata-Version: 2.1
Name: mac-imessage
Version: 0.2.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.7
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/pyimessage)

<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( 'This is a test message', '123-555-5555','iMessage' )
```
```python
mac_imessage.send_SMS( 'This is a test message', '123-555-5555' )
```

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

<br>

# Author
James Kabbes

