Skip to main content

A collection of tools to work with SMS messages.

Project description

A collection of tools used to send SMS messages.

Test Status

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

This library needs is tested against python 2 and 3. Both interpreters need to be available to tox

pyenv versions  # shows all versions available
pyenv local 2.7.* 3.7.*

Run tests:

tox .

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.4.tar.gz (7.6 kB view hashes)

Uploaded Source

Built Distribution

sms_toolkit-1.0.4-py3-none-any.whl (8.3 kB view hashes)

Uploaded Python 3

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