Galactic Messenger is a versatile and efficient Python package designed for sending messages across multiple platforms.
Project description
Galactic Messenger 🚀
Galactic Messenger is a versatile and efficient Python package designed for sending messages across multiple platforms. It provides seamless integration with popular communication channels such as email, Telegram, and WhatsApp, offering a streamlined solution for message delivery. Built with asynchronous capabilities, Galactic Messenger supports batch requests and delivers optimal performance. 💬📨📱
Installation
To install Galactic Messenger, simply use pip:
pip install galactic-messenger
Usage
Here is an example demonstrating how to use Galactic Messenger to send messages: 📝🚀
import asyncio
from galactic_messenger import setup_email
from galactic_messenger import setup_telegram
from galactic_messenger import setup_whatsapp
async def send_messages():
# Set up email
email_sender = setup_email("your_email@example.com", "your_password")
await email_sender({
"to": "recipient@example.com",
"subject": "Hello",
"message": "This is a test email.",
})
# Set up Telegram
telegram_sender = setup_telegram("your_telegram_token")
await telegram_sender({
"chatId": "your_chat_id",
"text": "Hello from Galactic Messenger!",
})
# Set up WhatsApp
whatsapp_sender = setup_whatsapp("http://your-whatsapp-api-endpoint")
await whatsapp_sender({
"chatId": "your_group_id",
"text": "Hello from Galactic Messenger!",
})
asyncio.run(send_messages())
Features
Email ✉️
- Send plain text emails
- Send emails with attachments
- Supports popular email services like Zoho Mail and Gmail
Telegram 📢
- Send text messages to Telegram chats
- Send images with captions to Telegram chats
- Send videos with captions to Telegram chats
WhatsApp 📲
- Send text messages to WhatsApp groups
- Send images with captions to WhatsApp groups
- Send videos with captions to WhatsApp groups
Batch Requests 🚀
Galactic Messenger seamlessly handles batch requests, allowing you to send multiple messages simultaneously. You can provide an array of messages to the sender functions for efficient batch processing.
async def main():
# Sending multiple Telegram messages in a batch
telegram_sender = setup_telegram("your_telegram_token")
await telegram_sender(
[
{
"chatId": "chat_id_1",
"text": "Message 1",
},
{
"chatId": "chat_id_2",
"text": "Message 2",
"imageBytes": open("./image.png", "rb").read(),
},
{
"chatId": "chat_id_3",
"text": "Message 3",
"videoBytes": open("./video.png", "rb").read(),
},
]
)
# Sending multiple WhatsApp messages in a batch
whatsapp_sender = setup_whatsapp("http://your-whatsapp-api-endpoint")
await whatsapp_sender(
[
{
"chatId": "chat_id_1",
"text": "Message 1",
},
{
"chatId": "chat_id_2",
"text": "Message 2",
"imageBytes": open("./image.png", "rb").read(),
},
{
"chatId": "chat_id_3",
"text": "Message 3",
"videoBytes": open("./video.png", "rb").read(),
},
]
)
Configuration
You can customize the behavior of Galactic Messenger by setting the following environment variables:
- 📫 EMAIL_SERVICE: The email service provider. Choose "zoho" or "gmail". Default: "zoho".
- ⏳ BATCH_TOTAL_TIMEOUT: Total timeout in seconds for batch requests. Default: 30.
- ⏰ BATCH_CONNECT_TIMEOUT: Connection timeout in seconds for batch requests. Default: 5.
- ⏳ SINGLE_TOTAL_TIMEOUT: Total timeout in seconds for single requests. Default: 10.
- ⏰ SINGLE_CONNECT_TIMEOUT: Connection timeout in seconds for single requests. Default: 2.
Contributing
Contributions to Galactic Messenger are welcome! If you find a bug, have a suggestion, or want to contribute code, please open an issue or submit a pull request on the GitHub repository.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file galactic-messenger-0.1.5.tar.gz
.
File metadata
- Download URL: galactic-messenger-0.1.5.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7aa918337de2ce2b77c9bee21260bcaa5ff973574fea2a5123593518a1eda6c8 |
|
MD5 | bc1b7bc5eb7dff04472dee1cd4dfb8e4 |
|
BLAKE2b-256 | 1a7287ad752c412bba2c1a96671b48e55e1fb28bda8e89b656db73e0c15eb33e |
File details
Details for the file galactic_messenger-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: galactic_messenger-0.1.5-py3-none-any.whl
- Upload date:
- Size: 15.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a0f369ca4d670e180fa1240d6f55a3cdc968b9c2ba6d6e917e7b886dc0b789c |
|
MD5 | c7c0ca2ea1f509457153e171e0277ae7 |
|
BLAKE2b-256 | efd85d6720bb51df952a17ecd6c418f16d88b44a6031e6692a279ec51b056c51 |