cubicbyte / reddit-account-generator

Automatically generate reddit accounts
MIT License
62 stars 13 forks source link

Added delay between each account creation #21

Open ghost opened 10 months ago

ghost commented 10 months ago

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.

cubicbyte commented 10 months ago

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):