diff options
author | Lorenz Diener <[email protected]> | 2017-04-10 10:33:39 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-04-10 10:33:39 +0200 |
commit | 54541f81de65850a97d5aff407deb5297c6ca2a0 (patch) | |
tree | 7253601511916213477d8f52012a782370a5fce2 /mastodon/__init__.py | |
parent | 7db6b4c02ee361d1e54b5c69d747918b1c193e42 (diff) | |
parent | 965d514de1c15a5a5572569c9a349bb304045006 (diff) | |
download | mastodon.py-54541f81de65850a97d5aff407deb5297c6ca2a0.tar.gz |
Merge pull request #30 from wjt/streaming
Support streaming API
Diffstat (limited to 'mastodon/__init__.py')
-rw-r--r-- | mastodon/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mastodon/__init__.py b/mastodon/__init__.py index 17f63e6..9c8e39b 100644 --- a/mastodon/__init__.py +++ b/mastodon/__init__.py | |||
@@ -1,2 +1,4 @@ | |||
1 | from mastodon.Mastodon import Mastodon | 1 | from mastodon.Mastodon import Mastodon |
2 | __all__ = ['Mastodon'] | 2 | from mastodon.streaming import StreamListener, MalformedEventError |
3 | |||
4 | __all__ = ['Mastodon', 'StreamListener', 'MalformedEventError'] | ||