persona = notte.Persona("<your-persona-id>")
emails = persona.emails()
You can also filter the emails by using the only_unread parameter.
emails = persona.emails(only_unread=True)
Be careful once emails are listed, they are considered read. Use the limit and/or timedelta parameters to limit the number of emails 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[EmailResponse]