africastalking-python
africastalking-python copied to clipboard
Add async send_async method to support Async/Await for SMS services
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