Giter Club home page Giter Club logo

reddit-account-generator's Introduction

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

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.

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
  1. 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

Script usage

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, 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 = '[email protected]'
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!

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

reddit-account-generator's People

Contributors

cubicbyte avatar zagreus9723 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.