An auto referral bot for referral link
import time import webbrowser refLink = 'https://www.google.com/' def autoReferral(): print('Press Ctrl-C to stop') i = 0 while True: webbrowser.open(refLink) i += 1 print('Referral link opened: ' + str(i) + ' times') time.sleep(0.5) autoReferral()