Skip to main content

Asynchronous Python library for the Mastodon API

Project description

atoot is a Python library providing an easy way to create Mastodon API applications.

Key features

Requirements

  • aiohttp

  • pytest (for tests)

Getting started

Install

pip install atoot

Use

Basic usage example:

import atoot
import asyncio

async def mastodon_bot():
    instance = "botsin.space"
    access_token = "YOUR_APPLICATION_ACCESS_TOKEN"

    client = await atoot.MastodonAPI.create(instance, access_token=access_token)
    resp = await client.verify_account_credentials()
    print(resp)
    await client.close()

asyncio.run(mastodon_bot())

Using client as a context manager, get 5 pages of home timeline and all notifications:

async def mastodon_bot():
    instance = "botsin.space"
    access_token = "YOUR_APPLICATION_ACCESS_TOKEN"

    async with atoot.client(instance, access_token=access_token) as c:
        home = await c.get_n_pages(c.home_timeline(limit=20), n=5)
        print("Home timeline:", home)

        notifs = await c.get_all(c.get_notifications())
        print("Notifications:", notifs)

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

atoot-1.0.2.tar.gz (11.7 kB view hashes)

Uploaded Source

Built Distribution

atoot-1.0.2-py3-none-any.whl (12.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page