Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
8322cf62
Commit
8322cf62
authored
Jan 19, 2016
by
Or Arbel
Browse files
'MyStreamListener' object is not callable"
Fix for "TypeError: 'MyStreamListener' object is not callable"
parent
920f5c49
Changes
1
Hide whitespace changes
Inline
Side-by-side
docs/streaming_how_to.rst
View file @
8322cf62
...
...
@@ -66,7 +66,7 @@ We need an api to stream. See :ref:`auth_tutorial` to learn how to get an api ob
Once we have an api and a status listener we can create our stream object.::
myStreamListener = MyStreamListener()
myStream = tweepy.Stream(auth = api.auth, listener=myStreamListener
()
)
myStream = tweepy.Stream(auth = api.auth, listener=myStreamListener)
Step 3: Starting a Stream
=========================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment