Skip to main content

A collection of tools to work with SMS messages.

Project description

A collection of tools used to send SMS messages.

Tools

Message Profiling

Accepts a raw SMS message string and determines its most efficient encoding, then determines how many segments would be used to send it.

Largely based on this tool (code found here).

Example:

from sms_toolkit.messages.profiling import profile_message
import json

profile = profile_message("Sup chonus")
print(json.dumps(profile, indent=4))

{
    "num_segments": 1,
    "segments": [
        {
            "message": "Sup chonus",
            "total_segment_length": 10,
            "unicode_character_list": [
                "S", "u", "p", " ", "c", "h", "o", "n", "u", "s"
            ],
            "byte_groups": [
                [83], [117], [112], [32], [99], [104], [111], [110], [117], [115]
            ]
        }
    ],
    "message_length": 10
}

Testing

From the root repository directory run the following:

pytest -s tests

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

sms-toolkit-1.0.1.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

sms_toolkit-1.0.1-py2-none-any.whl (9.4 kB view hashes)

Uploaded Python 2

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