Service layer
import TwilioClient
class MessageClient:
def __init__(self):
self.twilio_client = TwilioClient(twilio_account_sid, twilio_auth_token)
def send_message(body, from, to):
self.twilio_client.send_message(body, from, to)
twilio