Skip to main content

Automatic reddit account generator on selenium.

Project description

Automatic Reddit Account Maker

Reddit Logo

A python script on selenium to automatically create Reddit accounts.

Table of Contents

Introducing

Features

  • Automatic captcha bypass: The script automatically solves captchas during the account creation process.
  • Automatic email verification: The script automatically verifies the email address used for the account.
  • Proxy Support: Since reddit allows you to create 1 account per IP every 10 minutes, this is very important.
  • Resilience: The script is able to handle most errors that may occur during the account creation process.

Quick info

Firefox 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 not using your email, you should not show anyone the email address generated by the program. Having the address of this email, anyone can access it.

TODO:

  • Add automatic browser driver download
  • Add Tor support for easier proxy management
  • Make this a python package
  • Automatic email verification
  • Handle error when sub is not available

Getting started

Note Python 3.7+ is required

Script installation

  1. Clone this repository to your local machine:
git clone https://github.com/cubicbyte/reddit-account-generator.git
cd reddit-account-generator
  1. Install the required dependencies:
pip install -r requirements-cli.txt

Script usage

Note Firefox should be installed on your system for the script to work

Note You need to use Tor (not browser) or proxy, because you can only create 1 account per IP in 10 minutes

Using Tor (recommended for beginners)

Run this command and follow the instructions:

python run_tor.py

Using proxies

Add your proxies to the proxies.txt file

Configuring

Configuring is not needed. But if you want, you can change the settings in the config.py file.

Starting

  1. Run the script:
python create_accounts.py
  1. Enter the number of accounts you want to create
  2. Sit back and relax while the script generates Reddit accounts for you :)

Package installation

There are two ways to install the library:

  • Installation using pip (a Python package manager):
pip install reddit-account-generator
  • Installation from source (requires git):
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

Package Usage Example

from reddit_account_generator import create_account, protect_account, install_driver

# Install browser driver
install_driver()

email = 'your-email@gmail.com'
username = 'PolishCardinal69'
password = '31vV3X1zy8YP'

# Create account
create_account(email, username, password)

# Protect account from being suspended of being a bot
protect_account(username, password)

# Done!

Using proxy:

from reddit_account_generator import create_account, protect_account, install_driver
from reddit_account_generator.proxies import TorProxy

email = 'your-email@gmail.com'
# Username and password will be generated automatically

proxy = TorProxy(TOR_IP, TOR_PORT, TOR_PASSWORD, TOR_CONTROL_PORT, TOR_DELAY)

uname, pwd = create_account(email, proxy=proxy.get_next())
protect_account(username=uname, password=pwd)  # Proxy not required

Requirements

Contributing

Contributions to this project are welcome! Feel free to open issues or submit pull requests.

License

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 creators and maintainers of this project are not responsible for any misuse or damages caused by its usage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

reddit-account-generator-1.3.1.tar.gz (11.8 kB view hashes)

Uploaded Source

Built Distribution

reddit_account_generator-1.3.1-py3-none-any.whl (11.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page