Skip to main content

Python SDK for text with CM.

Project description

Text-sdk-python

publish to PyPi PyPi

A helper library to sending messages using python.

Want to send messages in your Python application? Then you are at the right address. If you want to get all the functionalities, go to: CM.com API Docs

Installing

Include the SDK by downloading the files manually or running the following command in a Python Shell.

    pip install cm_text_sdk_python

Instantiate the client

Use your productToken which authorizes you on the CM platform. Get yours on CM.com

    from cm_text import TextClient

    client = TextClient(apikey=key)

Send a message

By calling SendSingleMessage and providing message text, sender name, recipient phone number(s).

    client = TextClient(apikey=key)
    client.SendSingleMessage(message=message, from_='CM.com', to=Recipients)

Sending multiple messages

By calling AddMessage and providing message text, sender name, recipient phone number(s) you can queue multiple messages. Send them by calling send.

    client = TextClient(apikey=key)
    client.AddMessage(message=message, from_='pythonSDK', to=Recipients)
    client.AddMessage(message=message2, from_='pythonSDK', to=Recipients2)
    response = client.send()

Sending a rich message

By calling AddRichMessage and providing Media, message text, sender name, recipient phone number(s) you can queue multiple Rich messages. Send them by calling send.

    media = {
            "mediaName": "conversational-commerce",
            "mediaUri": "https://www.cm.com/cdn/cm/cm.png",
            "mimeType": "image/png"
        }

    client = TextClient(apikey=key)
    client.AddRichMessage(message=message, from_='pythonSDK', to=to, allowedChannels=allowedChannels, media=media)
    response = client.send()

Sending a Whatsapp Template message

By calling AddWhatsappTemplateMessage and providing Template, sender name, recipient phone number(s) you can queue multiple Whatsapp Template messages. Send them by calling send.

    template_namespace = "Your-Template-Namespace"
    template_element_name = "Replace with Template Name"
    template = WhatsappTemplate(template_namespace, template_element_name)
    
    client = TextClient(apikey=key)
    client.AddWhatsappTemplateMessage(from_='pythonSDK', to=to, template=template)
    response = client.send()

See Examples folder for more examples.

Sending Interactive Whatsapp message

See the example file for an example.

Get the result

Sending a message by calling send returns the response body. Response is of type: https://requests.readthedocs.io/en/master/user/quickstart/#response-content

    response = client.send()

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

cm_text_sdk_python-2.0.4.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

cm_text_sdk_python-2.0.4-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file cm_text_sdk_python-2.0.4.tar.gz.

File metadata

  • Download URL: cm_text_sdk_python-2.0.4.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.12

File hashes

Hashes for cm_text_sdk_python-2.0.4.tar.gz
Algorithm Hash digest
SHA256 ed77efe1df96ca5e50f1de8d6416e897f267105e127efe6421a4da50d35419c2
MD5 234c88b90401e94b5d401d93a43f8b22
BLAKE2b-256 b039565498674ea81fdc34617106be42a60312762904bf6886b81a637e7d742d

See more details on using hashes here.

File details

Details for the file cm_text_sdk_python-2.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for cm_text_sdk_python-2.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8d97be4f410f5008a6c83d7b05c8409bd368fb5ac181ad886cfa2874abc8e252
MD5 18412196cd3faaa2c706aea6394a12a8
BLAKE2b-256 20426068972fb65b483943f9e5485214b55cab8b592fe468aeb17cbe4cf1e953

See more details on using hashes here.

Supported by

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