africastalking-python icon indicating copy to clipboard operation
africastalking-python copied to clipboard

Add async send_async method to support Async/Await for SMS services

Open ipkiruiYegon opened this issue 3 years ago • 1 comments

ipkiruiYegon avatar Jun 07 '22 10:06 ipkiruiYegon

import africastalking

africastalking.initialize(username, api_key)
sms = africastalking.SMS

async def send_message(message, mobile_no):
    response = await (sms.send_async(message, [mobile_no]))
    return response

ipkiruiYegon avatar Jun 07 '22 12:06 ipkiruiYegon