Skip to content

Instantly share code, notes, and snippets.

@andypiper
Created November 10, 2022 22:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andypiper/a0db12dd3c949c63447ad5826263acca to your computer and use it in GitHub Desktop.
Save andypiper/a0db12dd3c949c63447ad5826263acca to your computer and use it in GitHub Desktop.
Mastodon code scribbles
from mastodon import Mastodon
mast = Mastodon(client_id='key',client_secret='secret',access_token='token',api_base_url='https://mastodon.social')
me = mast.me()
print(f"Followers: {me.followers_count}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment