A python script on selenium to automatically create Reddit accounts.
Chrome should be installed on your system for the script to work.
It is recommended to use proxies, because you can only create 1 account per IP in 10 minutes. See file proxies.txt or run python run_tor.py
To access the auto-generated email, visit https://1secmail.com
If you are using auto-generated email, you should not show anyone its address. Having the address of this email, anyone can access it.
Note Python 3.7+ is required
git clone https://github.com/cubicbyte/reddit-account-generator.git
cd reddit-account-generator
pip install -r requirements-cli.txt
Install chrome:
Windows/MacOS: Just install it
Linux:
sudo apt update
sudo apt install wget
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt-get install -f
Android (Termux):
pkg update
pkg install x11-repo -y
pkg install tur-repo -y
pkg install chromium -y
pkg install ffmpeg -y
Note You need to use Tor (not browser) or proxy, because you can only create 1 account per IP in 10 minutes
Run this command and follow the instructions:
python run_tor.py
Add your proxies to the proxies.txt file
Configuring is not needed. But if you want, you can change the settings in the config.py file.
python create_accounts.py
There are two ways to install the library:
pip install reddit-account-generator
git clone https://github.com/cubicbyte/reddit-account-generator.git
cd reddit-account-generator
python setup.py install
or:
pip install git+https://github.com/eternnoir/pyTelegramBotAPI.git
It is generally recommended to use the first option.
Update package:
pip install reddit-account-generator --upgrade
from reddit_account_generator import create_account, verify_email
# Create account
email, username, password = create_account()
# Verify email
verify_email(email)
# Done!
print(f'Email: {email}\nUsername: {username}\nPassword: {password}')
Advanced usage:
from reddit_account_generator import create_account
from reddit_account_generator.proxies import DefaultProxy
email = 'your-email@gmail.com'
username = 'PolishCardinal69'
password = '31vV3X1zy8YP'
# Load proxies from file
with open('proxies.txt', 'r') as f:
proxy = DefaultProxy(f.read().splitlines())
# Create account using proxy
create_account(email, username, password, proxy=proxy.get_next())
# Verify email (proxy is not required)
verify_email(email)
# Done!
Contributions to this project are welcome! Feel free to open issues or submit pull requests.
This project is licensed under the MIT License.
Disclaimer: Please use this script responsibly and abide by Reddit's terms of service. Automated account creation might be against Reddit's policies, and using this script could potentially lead to consequences. The creator and maintainers of this project are not responsible for any misuse or damages caused by its usage.