You can find here all documentation:
https://docs.joinmastodon.org/api/rest/
gab.toot_send("hello world");
gab.toot_get("123321");
gab.toot_context("123321");
gab.toot_reposts("123321");
gab.toot_favorites("123321");
gab.toot_card("123321");
gab.toot_share("123321");
gab.toot_unshare("123321");
gab.toot_pin("123321");
gab.toot_unpin("123321");
gab.toot_like("123321");
gab.toot_unlike("123321");
gab.search("human groups");
gab.notifications();
gab.notifications_clear();
gab.notification_remove("33333");
gab.user("123344");
gab.user_following("123344");
gab.user_followers("123344");
gab.user_toots("123344");
gab.user_follow("123344");
gab.user_unfollow("123344");
Some api calls have a limit of 40 items per array.
So when you have a link:
in the response headers, you
can get next/previous page using pagination
routine.
Example:
following = gab.user_following("123344",{"limit":40})
if following.status_code==200:
next_page = gab.paginate(following.headers,True)
prev_page = gab.paginate(following.headers,False)
...
All lib responses are native from requests
library.