Skip to content

0.1.0

Latest
Compare
Choose a tag to compare
@ethan-wickstrom ethan-wickstrom released this 20 Mar 08:51
· 38 commits to main since this release

πŸŽ‰ 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:

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