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

Support for Async calls in SMS services

Open ipkiruiYegon opened this issue 3 years ago • 0 comments

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 09 '22 05:06 ipkiruiYegon