mirror of
https://ghproxy.net/https://github.com/fairpm/planet.git
synced 2026-07-21 12:07:24 +08:00
6 lines
122 B
Python
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)
|