You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2023. It is now read-only.
tweets = [tweet for tweet in tweets if tweet.user.screen_name != "UTokyoLib_bot"]
# 5時間以内のツイートに絞る
tweets = [tweet for tweet in tweets if tweet.created_at >= datetime.today() - timedelta(hours=5)]
# 開館・閉館に関するツイートに絞る
tweets = [tweet for tweet in tweets if "開館" in tweet.text or "開室" in tweet.text or "閉館" in tweet.text or "閉室" in tweet.text or "休館" in tweet.text or "休室" in tweet.text]