TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Twitter clients that can filter tweets by regex?

3 pointsby jmillerincabout 15 years ago
Want to filter out tweets containing http://4sq.com or http://gowal.la.<p>Any recommendations on how to do this?

3 comments

aneeshabout 15 years ago
What is this for? You can use the search API directly (it works with URLs):<p><a href="http://apiwiki.twitter.com/Twitter-API-Documentation" rel="nofollow">http://apiwiki.twitter.com/Twitter-API-Documentation</a><p>If you truly want regex support, just grab a lot of tweets with the API, and filter client-side.
评论 #1274574 未加载
uuidabout 15 years ago
Twitter clients on the desktop suck.<p>yorufukurou does regex and is generally tolerable (OS X) <a href="http://sites.google.com/site/yorufukurou/home-en" rel="nofollow">http://sites.google.com/site/yorufukurou/home-en</a><p>Apart from that, it's easy to roll your own stuff - for example using the tweepy python library.
samratjpabout 15 years ago
BYO with Yahoo BOSS. Here's an example app: <a href="http://zooie.wordpress.com/2009/01/15/twitter-boss-real-time-search/" rel="nofollow">http://zooie.wordpress.com/2009/01/15/twitter-boss-real-time...</a>