planet/venus/filters/notweets.py
Ryan McCue 74bb32f363 Initial export of the repository
Signed-off-by: Ryan McCue <me@ryanmccue.info>
2025-06-05 12:00:48 +02:00

6 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)