コロナ用

import tweepy

# 先ほど取得した各種キーを代入する
CK = ""
CS = ""
AT = ""
AS = ""

# Twitterオブジェクトの生成
auth = tweepy.OAuthHandler(CK, CS)
auth.set_access_token(AT, AS)

api = tweepy.API(auth)

# リストのID
news_id = xxxxxx


# リストを降順
for status in api.list_timeline(list_id=news_id)[::-1]:

    # RTはなし
    if not status.text.startswith("RT"):

        # RT済みもなし
        if not status.retweeted:

            n = 0

            for i in ["コロナ", "ワクチン", "会見", "配信", "感染", "速報", "発表", "愛媛"]:

                if i in status.text:

                    n += 1

            if n > 2:

                print(status.text)
                print(status.user.name)

                api.retweet(status.id)