π macpymessenger 0.1.0 Release π
We are excited to announce the initial release of macpymessenger, a Python library that simplifies sending iMessages on macOS! π¬π¬
β¨ Highlights
- π Easy installation via pip
- π¨ Send text messages programmatically using the Messages app
- π§ Customizable configuration for AppleScript file paths
- π§ͺ Test suite to ensure functionality and reliability
π Features
In this initial release, macpymessenger offers the following features:
- β Send text messages to individual recipients
- β Intuitive and user-friendly API
- β Detailed documentation and usage examples
- β Open-source under the Apache License 2.0
π¦ Installation
To start using macpymessenger, simply install it using pip:
pip install macpymessenger
π Getting Started
Here's a quick example of how to send a message using macpymessenger:
from i_py_messenger import IMessageClient, Configuration
config = Configuration()
client = IMessageClient(config)
phone_number = "1234567890"
message = "Hello, this is a test message sent using macpymessenger!"
success = client.send(phone_number, message)
if success:
print("Message sent successfully!")
else:
print("Failed to send the message.")
For more detailed usage instructions and examples, please refer to the README file.
π€ Contributing
We welcome contributions from the community! If you encounter any issues, have suggestions for improvements, or would like to add new features, please open an issue or submit a pull request on the GitHub repository.
π Acknowledgements
We would like to express our gratitude to the developers of the libraries and tools used in this project, as well as the open-source community for their continuous support and inspiration.
π§ Contact
If you have any questions, feedback, or just want to say hello, feel free to reach out:
- Email: [email protected]
- GitHub: ethan-wickstrom
Thank you for choosing macpymessenger! We hope this library simplifies your iMessage automation tasks and enhances your Python projects on macOS. Happy messaging! π¬β¨
Full Changelog: https://github.com/ethan-wickstrom/macpymessenger/commits/0.1.0