|
|
|
|
@ -40,11 +40,20 @@ if __name__ == "__main__": |
|
|
|
|
first_tweet_id = start_bot(default) |
|
|
|
|
else: |
|
|
|
|
if input('Start Twitter bot? (y/n) ') in ['yes', 'y']: |
|
|
|
|
conf = config.get_config() |
|
|
|
|
if 'first_tweet_id' in conf: |
|
|
|
|
first_tweet_id = conf['first_tweet_id'] |
|
|
|
|
print(f'Use this tweet as instructions? https://twitter.com/{conf["bot_username"]}/status/{first_tweet_id}') |
|
|
|
|
print('y/n') |
|
|
|
|
if input('>>> ').lower() != 'y': |
|
|
|
|
start_bot(default=False) |
|
|
|
|
else: |
|
|
|
|
first_tweet_id = start_bot(default=False) |
|
|
|
|
else: |
|
|
|
|
print('Exiting...') |
|
|
|
|
|
|
|
|
|
conf = config.get_config() |
|
|
|
|
|
|
|
|
|
print(f'You have posted your first tweet: https://twitter.com/{conf["bot_username"]}/status/{first_tweet_id}') |
|
|
|
|
|
|
|
|
|
# Start monitoring answers to the first tweet. |
|
|
|
|
|