planet/filters/notweets.py
2007-12-23 10:25:04 -05:00

7 lines
122 B
Python

#remove all tweets
import sys
data = sys.stdin.read()
if data.find('<id>tag:twitter.com,') < 0:
sys.stdout.write(data)