encode, decode and split SMS.
Project description
Simple set of utility functions for encoding, decoding and splitting sms messages. Shift tables is currently not supported.
Features
Codecs for encoding and decoding GSM 03.38
Message splitting for both UCS2/UTF-16 and GSM 03.38
Installation
To install smsutil:
$ pip install smsutil
Basic Usage
Example for encoding and decoding:
import smsutil
smsutil.is_valid_gsm('nobita and doraemon') # True
smsutil.is_valid_gsm('🍔') # False
gsm = smsutil.encode('the quick brown fox jumps over the lazy dog {@}')
# b'the quick brown fox jumps over the lazy dog \x1b(\x00\x1b)'
smsutil.decode(gsm) # encoding='gsm0338'
# 'the quick brown fox jumps over the lazy dog {@}'
utf16 = smsutil.encode('最高でした 🍔')
# b'g\x00\x9a\xd80g0W0_\x00 \xd8<\xdfT'
smsutil.decode(utf16, encoding='utf_16_be') # should specify encoding
# '最高でした 🍔'
sms = smsutil.split('[the quick brown fox]')
len(sms.parts) # 1
sms.encoding # 'gsm0338'
sms.parts[0].content # '[the quick brown fox]'
sms.parts[0].length # 21
sms.parts[0].bytes # 23
sms = smsutil.split('最高でした 🍔')
len(sms.parts) # 1
sms.encoding # 'utf_16_be'
sms.parts[0].content # '最高でした 🍔'
sms.parts[0].length # 7
sms.parts[0].bytes # 16
smsutil is just using python’s builtin codecs for UCS2/UTF-16.
Contributing
Fork repository.
Create 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
smsutil-1.1.3.tar.gz
(4.6 kB
view details)
Built Distribution
File details
Details for the file smsutil-1.1.3.tar.gz
.
File metadata
- Download URL: smsutil-1.1.3.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b521a15c37680221133b33dc03430be09f1f2a765a7d74463f848a3cebbb3400 |
|
MD5 | af4ea185f3786700be324613f3fdc973 |
|
BLAKE2b-256 | 83aeb5ebcfc33dfbb6d09d5072341c7629fdce9588e080615924c2a465923aa2 |
File details
Details for the file smsutil-1.1.3-py3-none-any.whl
.
File metadata
- Download URL: smsutil-1.1.3-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d51e7da0563b2ce76476b974a6e990f5f04a47d2f8ee666fad3737a168841774 |
|
MD5 | a5b14867e93f04f9660a357c2cfb4316 |
|
BLAKE2b-256 | 77bbdb54b4ff5defd96f7484924b4d2b27ee87c558ba13d781304a74a7aaa956 |