TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Twitter clients that can filter tweets by regex?

3 点作者 jmillerinc大约 15 年前
Want to filter out tweets containing http://4sq.com or http://gowal.la.<p>Any recommendations on how to do this?

3 条评论

aneesh大约 15 年前
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 未加载
uuid大约 15 年前
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.
samratjp大约 15 年前
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>