persona = notte.Persona("<your-persona-id>")
sms = persona.sms()
You can also filter the sms by using the only_unread parameter.
sms = persona.sms(only_unread=True)
Be careful once sms are listed, they are considered read. Use the limit and/or timedelta parameters to limit the number of sms returned

Parameters

limit
int
Max number of emails to return
timedelta
datetime.timedelta | None
Return only emails that are not older than timedelta
only_unread
bool

Returns

Sequence[SMSResponse]