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
481336ab
Commit
481336ab
authored
Mar 05, 2017
by
Bryan
Committed by
GitHub
Mar 05, 2017
Browse files
`streamListener.filter(follow=)` expects `[str]`
Example shows the list of parameters as `int`s; they should be `str`s.
parent
9116bfe7
Changes
1
Hide whitespace changes
Inline
Side-by-side
docs/streaming_how_to.rst
View file @
481336ab
...
@@ -83,7 +83,7 @@ the word *python*. The **track** parameter is an array of search terms to stream
...
@@ -83,7 +83,7 @@ the word *python*. The **track** parameter is an array of search terms to stream
This example shows how to use **filter** to stream tweets by a specific user. The **follow** parameter is an array of IDs. ::
This example shows how to use **filter** to stream tweets by a specific user. The **follow** parameter is an array of IDs. ::
myStream.filter(follow=[2211149702])
myStream.filter(follow=[
"
2211149702
"
])
An easy way to find a single ID is to use one of the many conversion websites: search for 'what is my twitter ID'.
An easy way to find a single ID is to use one of the many conversion websites: search for 'what is my twitter ID'.
...
...
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