bulksmsmd

Python wrapper for Unifun BulkSMSAPI (bulksms.md)


Keywords
python, api, wrapper, unifun, bulksms, bulksmsmd, bulksmsapi
License
MIT
Install
pip install bulksmsmd==0.1.3

Documentation

bulksmsmd - Python wrapper for Unifun BulkSMSAPI (bulksms.md)

Python Versions PyPI Version License

Condsider the official documentation before using this package or to understand the more advanced options dlrurl, dlrmask, charset and coding.

2021 Official documentation .DOCX

2021 Official documentation .PDF

Installation

Installation is done using the following command:

pip install bulksmsmd

Usage

The username and password are the credentials for the API. The sender is the name of the sender.

client = SMSClient(
    username = 'username',
    password = 'password',
    sender = 'sender',
    proxy = {
        'http': 'http://PROXY_URL,
        'https': 'https://PROXY_URL',
    }
)

The client object is used to send messages and contains two methods: send_sms_simple & send_sms_nde.

client.send_sms_simple(
    msisdn = '69123456',
    body = 'Test message.',
    prefix = '373',
)

client.send_sms_nde(
    msisdn = '69123456',
    body = 'Test message.',
    prefix = '373',
    dlr_url = 'https://example.com/dlr',
    dlr_mask = '31',
    charset = 'utf8',
    coding = '2',
)