Mastodonplus.py/mastodon/__init__.py
Will Thompson ab60931620
Initial implementation of streaming API
This is missing any error handling and rate-limiting around the stream
itself, but once the stream is established, the full range of events are
supported.

Fixes issue #14.
2017-04-10 08:18:08 +01:00

5 líneas
171 B
Python

from mastodon.Mastodon import Mastodon
from mastodon.streaming import StreamListener, MalformedEventError
__all__ = ['Mastodon', 'StreamListener', 'MalformedEventError']