Skip to main content

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 asyncio for 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:

  1. Set up Application Default Credentials (ADC) as described in the Google Cloud documentation
  2. 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:

  1. Create an App Password for your Google account (if you have 2FA enabled)
  2. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

multimodal_communication-0.4.2.tar.gz (77.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

multimodal_communication-0.4.2-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file multimodal_communication-0.4.2.tar.gz.

File metadata

  • Download URL: multimodal_communication-0.4.2.tar.gz
  • Upload date:
  • Size: 77.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for multimodal_communication-0.4.2.tar.gz
Algorithm Hash digest
SHA256 de829e2babf10289e37f8d922f583145af58fb5273b127921f165cb60da15710
MD5 bffd6d5ab631ac328d23b8a468e9abcf
BLAKE2b-256 4b60dde4422a31b0764298492fc5eb76444672913e2d3aef933cd81e945c0de6

See more details on using hashes here.

File details

Details for the file multimodal_communication-0.4.2-py3-none-any.whl.

File metadata

File hashes

Hashes for multimodal_communication-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 06d3ad0dd91c4c7a81d8f4cb43f752e512f26d1fdd6c38a47733e1fcfca4a52a
MD5 679dd546fff444eedae035a09f873aa1
BLAKE2b-256 feb2f99061b8452750054b37dfa8269f137618c78ea05deb8a1e449599f263a3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page