Skip to content

Kwieeciol/pyhton-tellonym-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tellonym API

Creating the API

import tellonym_api

api = tellonym_api.TellonymApi()

How to check if a user exists!

import tellonym_api

api = tellonym_api.TellonymApi()

user = api.GetUser("[your user]")
if user.IsProfileFound() == True:
    #profile is existing
else:
    #profile isnt existing!

Simple User Getter

import tellonym_api

api = tellonym_api.TellonymApi()
user = api.GetUser("[user]")
if not user.IsProfileFound() == True:
    exit("Profile isnt existing!")

user.FetchFollowers()
user.FetchFollowings()
user.FetchTells()

print(user.GetTells())
print(user.GetFollowers())
print(user.GetFollowings())

Made with <3 by PatchByte

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages