A unofficial python module to easily interact with Tellonym
from tellonym import Tellonym as client
client = client.Tellonym(username, password)
profile = client.get_profile()>>> client.get_tells() # will return an array with tell objects
>>> client.send_tell(user_id, text, anonymous=True)
>>> client.delete_tell(tell_id)
>>> client.get_user() # will return a user object
>>> client.logout()>>> profile.is_default_phonenumber()>>> answer.is_anonymous_tell()
>>> answer.like()
>>> answer.delete()