Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 928 Bytes

File metadata and controls

35 lines (29 loc) · 928 Bytes

Unofficial Tellonym SDK for Python

GitHub Contributors GitHub Repo Size GitHub License

A unofficial python module to easily interact with Tellonym

Usage

from tellonym import Tellonym as client

client = client.Tellonym(username, password)
profile = client.get_profile()

Client

>>> 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

>>> profile.is_default_phonenumber()

Answer

>>> answer.is_anonymous_tell()
>>> answer.like()
>>> answer.delete()