yousefissa / Twitter-Follow-and-Unfollow-Bot

A bot that allows you to follow and unfollow users on twitter. Also allows you to do many other things.
119 stars 40 forks source link

Continue() returns to main_menu() #2

Closed SomeoneCares11 closed 7 years ago

SomeoneCares11 commented 7 years ago

Hi,

when i choose number its return to the main menu :-) i have checked the code

def Continue():
    # asks the user if they want to keep calculating, converts to lower case
    keep_going = input('Do you want to keep going? Enter yes or no. \n'
                       '').lower()
    # evaluates user's response.
    if keep_going == 'yes':
        main_menu()
    elif keep_going == 'no':
        print('\n'
              'Thanks for using the Twitter bot!')
        quit()
    else:
        print('\n'
              'Input not recognized. Try again.')

Also there an error in your code https://github.com/yousefissa/Twitter-Follow-and-Unfollow-Bot/blob/633cebf9c3f21e63919b45a8c3e6027b733ba35c/twitterBot.py#L52 i have repleaced it with 8: unfavorite_all,

yousefissa commented 7 years ago

Sure, I will fix it. Thanks for letting me know!