reddit-account-generator icon indicating copy to clipboard operation
reddit-account-generator copied to clipboard

Added delay between each account creation

Open ghost opened this issue 1 year ago • 1 comments

My rotating proxy automatically changes IP once every 5 minutes.

Therefore, I want to add a delay between each account creation according to the specified number of seconds that can be configured in the config.py file.

ghost avatar Jan 04 '24 12:01 ghost

Good idea, I'll add it a bit later

If you want it right now, change line 156 of create_accounts.py file to look like this:

            else:
                logger.warning('Email verification failed. Skipping...')
            time.sleep(5 * 60)  # This one

except (KeyboardInterrupt, SystemExit, NoSuchWindowException):

cubicbyte avatar Jan 05 '24 15:01 cubicbyte