Log whether Retweets are enabled or not when starting the application

This commit is contained in:
Daniel Schulte 2018-03-18 19:16:59 +01:00
parent 992c39fd59
commit a4a7e137f7
1 changed files with 3 additions and 1 deletions

View File

@ -249,13 +249,15 @@ def main():
check_rate_limits(api)
stream_name = ",".join(args.keywords) if args.keywords else "Timeline"
show_rts = None
if len(args.keywords) == 0:
show_rts = False if args.no_retweets else True
else:
show_rts = True if args.retweets else False
stream_name += " (including Retweets)" if show_rts else " (without Retweets)"
stream_name = ",".join(args.keywords) if args.keywords else "Timeline"
def start_streaming(listener, api):
stream = tweepy.Stream(listener=listener, auth=api.auth)