classSms(object):'''Sms facade. .. note:: On Android your app needs the SEND_SMS permission in order to send sms messages. .. versionadded:: 1.2.0 '''defsend(self,recipient,message):self._send(recipient=recipient,message=message)# privatedef_send(self,**kwargs):raiseNotImplementedError()