Add your description here
Project description
Multimodal Communication
multimodal_communication provides utilities for sending text messages through email-to-SMS gateways and managing files in Google Cloud Storage. This package is designed to simplify communication and data management across different platforms.
Features
- SMS Messaging: Send text messages via email-to-SMS gateways (supports multiple carriers)
- Asynchronous Support: Utilizes
asynciofor non-blocking message sending - Batch Messaging: Send messages to multiple recipients simultaneously
- Google Cloud Storage: Easy file upload, download, and deletion operations
- Multiple Data Format Support: Work with CSV, JSON, and pickled objects
Components
SMS Messaging Module
This module allows you to send text messages through email-to-SMS gateways, supporting various carriers including Verizon, T-Mobile, Sprint, AT&T, and more.
from multimodal_communication.python_texting import send_text_message
# Send a simple text message
send_text_message(
message="Hello from Python!",
subject="Notification",
phone_number="1234567890",
carrier="tmobile",
email="your-email@gmail.com",
email_password="your-app-password"
)
CloudHelper
The CloudHelper class provides an interface for interacting with Google Cloud Storage:
from multimodal_communication.cloud_functions import CloudHelper
# Upload a local file to Google Cloud Storage
cloud = CloudHelper(path="path/to/local/file.csv")
cloud.upload_to_cloud(bucket_name="my-bucket", file_name="cloud-file.csv")
# Upload an object from memory
import pandas as pd
df = pd.DataFrame({"col1": [1, 2], "col2": [3, 4]})
cloud = CloudHelper(obj=df)
cloud.upload_to_cloud(bucket_name="my-bucket", file_name="dataframe.csv")
# Download a file from Google Cloud Storage
cloud = CloudHelper()
df = cloud.download_from_cloud("my-bucket/path/to/file.csv")
# Delete a file from Google Cloud Storage
cloud = CloudHelper()
cloud.delete_from_cloud(bucket_name="my-bucket", file_name="file-to-delete.csv")
Installation (with local project download)
pip install . -e
Requirements
- Python 3.6+
- pandas
- google-cloud-storage
- aiosmtplib
Setup
Google Cloud Authentication
To use the CloudHelper class:
- Set up Application Default Credentials (ADC) as described in the Google Cloud documentation
- Ensure your user account or service account has the required permissions (e.g., "storage.buckets.list")
Gmail Authentication for SMS
To use the SMS messaging functionality with Gmail:
- Create an App Password for your Google account (if you have 2FA enabled)
- Or enable "Less secure app access" (not recommended for production)
License
MIT License
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file multimodal_communication-0.5.7.tar.gz.
File metadata
- Download URL: multimodal_communication-0.5.7.tar.gz
- Upload date:
- Size: 80.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c967e85f9d03a93a4465de2fc0fc5b576e5f89e4351c79a8363b00c8799978d
|
|
| MD5 |
381f5d7152df8d4ee8d38b0b06cbe235
|
|
| BLAKE2b-256 |
152626e31a8b043875e326f72e59c9b4aaa6ab280adaeafee605b47ab5ea9737
|
File details
Details for the file multimodal_communication-0.5.7-py3-none-any.whl.
File metadata
- Download URL: multimodal_communication-0.5.7-py3-none-any.whl
- Upload date:
- Size: 13.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ff7037c334b6edec0eabafad62fc8681020ad9c321a707d5435865a9b5cca5b
|
|
| MD5 |
1f20c24cd26ef92e56c51a9fcd69e82f
|
|
| BLAKE2b-256 |
a990a004df05b072e6b1618f21b50fcdbbfd2264ab419b379c9996079e67c7af
|