Releases: ethan-wickstrom/macpymessenger
0.1.0
🎉 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