aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2017-04-10 10:33:39 +0200
committerGitHub <[email protected]>2017-04-10 10:33:39 +0200
commit54541f81de65850a97d5aff407deb5297c6ca2a0 (patch)
tree7253601511916213477d8f52012a782370a5fce2 /mastodon/__init__.py
parent7db6b4c02ee361d1e54b5c69d747918b1c193e42 (diff)
parent965d514de1c15a5a5572569c9a349bb304045006 (diff)
downloadmastodon.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__.py4
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 @@
1from mastodon.Mastodon import Mastodon 1from mastodon.Mastodon import Mastodon
2__all__ = ['Mastodon'] 2from mastodon.streaming import StreamListener, MalformedEventError
3
4__all__ = ['Mastodon', 'StreamListener', 'MalformedEventError']
Powered by cgit v1.2.3 (git 2.41.0)