How to filter only tweets from original user with `stream.filter(follow=['12345'])`
See original GitHub issueit looks like stream.filter(follow=['12345'])
includes tweets at someone and RT, what’s the way to get tweets solely from that user?
Issue Analytics
- State:
- Created 6 years ago
- Reactions:10
- Comments:7 (1 by maintainers)
Top Results From Across the Web
python - Filtering Only Original Tweets in a tweepy.Stream
I'm not entirely sure what the problem is, but you can always try to simplify the logic in the is_not_a_reply method.
Read more >Stream filtering Tweets from a large set of users - Twitter API v2
Hi, I am interested in a Filtered Stream that follows a predefined set of users. I am aiming for a set of a...
Read more >Filtered stream introduction | Docs | Twitter Developer Platform
The filtered search endpoint supports edited Tweets. This endpoint will deliver edited Tweets that match one or more of your filters, along with...
Read more >How to see only someone's original tweets on Twitter, filtering ...
That way you'll see what the user you are looking for tweeted from the ne...
Read more >How to turn off retweets on Twitter from accounts you follow ...
Twitter lets users mute retweets from people they follow. ... from Twitter accounts you follow, so you only see original tweets from them....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Looking at Twitter’s API it seems like it is not possible to filter tweets from original user out.
My work around method:
I had to write a few lines of code to filter it out my self. I did not find a solution for this in tweepy.