Bot.py(我正在使用的那个)

#!/usr/bin/env python

from TwitterFollowBot import TwitterBot
my_bot = TwitterBot("/Home/TwitterFollowBot/config.txt")
my_bot.sync_follows()
my_bot.auto_rt("@ShoutGamers", count=2200)


因此,特别是我正在使用此TwitterFollowBot机器人自动转发其中包含“ @ShoutGamers”的任何推文。

默认.py

from TwitterFollowBot import TwitterBot
my_bot = TwitterBot()
my_bot.auto_fav("phrase", count=1000)


我想知道如何在其中添加多个短语?
我需要在这两个@ShoutGamers和@RtwtKing中添加这两个短语。

最佳答案

就像添加2个字符串一样简单。

如果要自动转推在单个推文中同时包含@ShoutGamers@RtwtKing的推文,您可以:

my_bot.auto_rt("@ShoutGamers @RtwtKing", count=2200)


如果要自动转发不具有@ShoutGamers@RtwtKing的推文,可以使用bot.auto_rt()两次:

my_bot.auto_rt("@ShoutGamers", count=2200)
my_bot.auto_rt("@RtwtKing", count=2200)

关于python - 可以对这个.py使用多个词组吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40820743/

10-09 09:57