Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 303 Bytes

File metadata and controls

22 lines (15 loc) · 303 Bytes

Sendexa Python SDK

Official Python SDK for the Sendexa communications platform.

Install:

pip install sendexa

Example:

from sendexa import Sendexa

sendexa = Sendexa(api_key="SENDEXA_API_KEY")

sendexa.sms.send(
    to="+233XXXXXXXXX",
    message="Hello from Sendexa"
)