register_app.py 234 B

123456789101112131415
  1. #!/usr/bin/env python3
  2. from mastodon import Mastodon
  3. '''
  4. you need to register the app only once
  5. '''
  6. Mastodon.create_app(
  7. "oloturia_listener",
  8. api_base_url = "https://botsin.space",
  9. to_file = "secret"
  10. )
  11. print("App registered!")