reddit-account-generator


Namereddit-account-generator JSON
Version 1.3.1 PyPI version JSON
download
home_pagehttps://github.com/cubicbyte/reddit-account-generator
SummaryAutomatic reddit account generator on selenium.
upload_time2023-09-07 16:38:49
maintainer
docs_urlNone
authorcubicbyte
requires_python
licenseMIT
keywords python reddit account-generator account-maker account-generation r-place rplace
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Automatic Reddit Account Maker

![Reddit Logo](https://www.redditstatic.com/about/assets/reddit-logo.png)

A python script on selenium to automatically create Reddit accounts.

## Table of Contents

- [Introducing](#introducing)
    - [Features](#features)
    - [Quick info](#quick-info)
    - [TODO](#todo)
- [Getting started](#getting-started)
    - [Script Installation](#script-installation)
    - [Script Usage](#script-usage)
    - [Package Installation](#package-installation)
    - [Package Usage](#package-usage-example)
- [Requirements](#requirements)
- [Contributing](#contributing)
- [License](#license)

# 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:
- [x] Add automatic browser driver download
- [x] Add Tor support for easier proxy management
- [x] Make this a python package
- [x] 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:

```shell
git clone https://github.com/cubicbyte/reddit-account-generator.git
cd reddit-account-generator
```

2. Install the required dependencies:

```shell
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:
```shell
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](config.py) file.

### Starting

1. Run the script:

```shell
python create_accounts.py
```

2. Enter the number of accounts you want to create
3. 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):

```shell
pip install reddit-account-generator
```

- Installation from source (requires git):

```shell
git clone https://github.com/cubicbyte/reddit-account-generator.git
cd reddit-account-generator
python setup.py install
```

or:

```shell
pip install git+https://github.com/eternnoir/pyTelegramBotAPI.git
```

It is generally recommended to use the first option.

Update package:

```shell
pip install reddit-account-generator --upgrade
```

## Package Usage Example

```python
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:

```python
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

- Python 3.7+
- [selenium](https://pypi.org/project/selenium/)
- [selenium-recaptcha-solver](https://pypi.org/project/selenium-recaptcha-solver/)
- [random-username](https://pypi.org/project/random-username/)
- [webdriverdownloader](https://pypi.org/project/webdriverdownloader/)
- [stem](https://pypi.org/project/stem/)
- [coloredlogs](https://pypi.org/project/coloredlogs/) *optional

## 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](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.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cubicbyte/reddit-account-generator",
    "name": "reddit-account-generator",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python reddit account-generator account-maker account-generation r-place rplace",
    "author": "cubicbyte",
    "author_email": "bmaruhnenko@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/98/9e/bbef86c562ab4217f3002beb41a49a6f46dceae412525a3c6425aa217704/reddit-account-generator-1.3.1.tar.gz",
    "platform": null,
    "description": "# Automatic Reddit Account Maker\n\n![Reddit Logo](https://www.redditstatic.com/about/assets/reddit-logo.png)\n\nA python script on selenium to automatically create Reddit accounts.\n\n## Table of Contents\n\n- [Introducing](#introducing)\n    - [Features](#features)\n    - [Quick info](#quick-info)\n    - [TODO](#todo)\n- [Getting started](#getting-started)\n    - [Script Installation](#script-installation)\n    - [Script Usage](#script-usage)\n    - [Package Installation](#package-installation)\n    - [Package Usage](#package-usage-example)\n- [Requirements](#requirements)\n- [Contributing](#contributing)\n- [License](#license)\n\n# Introducing\n\n## Features\n- **Automatic captcha bypass**: The script automatically solves captchas during the account creation process.\n- **Automatic email verification**: The script automatically verifies the email address used for the account.\n- **Proxy Support**: Since reddit allows you to create 1 account per IP every 10 minutes, this is very important.\n- **Resilience**: The script is able to handle most errors that may occur during the account creation process.\n\n## Quick info\n\nFirefox should be installed on your system for the script to work.\n\nIt 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`\n\nTo access the auto-generated email, visit https://1secmail.com\n\nIf 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.\n\n## TODO:\n- [x] Add automatic browser driver download\n- [x] Add Tor support for easier proxy management\n- [x] Make this a python package\n- [x] Automatic email verification\n- [ ] Handle error when sub is not available\n\n# Getting started\n\n> **Note** Python 3.7+ is required\n\n## Script installation\n\n1. Clone this repository to your local machine:\n\n```shell\ngit clone https://github.com/cubicbyte/reddit-account-generator.git\ncd reddit-account-generator\n```\n\n2. Install the required dependencies:\n\n```shell\npip install -r requirements-cli.txt\n```\n\n## Script usage\n\n> **Note** **Firefox should be installed on your system for the script to work**\n\n> **Note** **You need to use Tor (not browser) or proxy, because you can only create 1 account per IP in 10 minutes**\n\n#### Using Tor (recommended for beginners)\nRun this command and follow the instructions:\n```shell\npython run_tor.py\n```\n\n#### Using proxies\nAdd your proxies to the proxies.txt file\n\n### Configuring\n\nConfiguring is not needed. But if you want, you can change the settings in the [config.py](config.py) file.\n\n### Starting\n\n1. Run the script:\n\n```shell\npython create_accounts.py\n```\n\n2. Enter the number of accounts you want to create\n3. Sit back and relax while the script generates Reddit accounts for you :)\n\n## Package installation\n\nThere are two ways to install the library:\n\n- Installation using pip (a Python package manager):\n\n```shell\npip install reddit-account-generator\n```\n\n- Installation from source (requires git):\n\n```shell\ngit clone https://github.com/cubicbyte/reddit-account-generator.git\ncd reddit-account-generator\npython setup.py install\n```\n\nor:\n\n```shell\npip install git+https://github.com/eternnoir/pyTelegramBotAPI.git\n```\n\nIt is generally recommended to use the first option.\n\nUpdate package:\n\n```shell\npip install reddit-account-generator --upgrade\n```\n\n## Package Usage Example\n\n```python\nfrom reddit_account_generator import create_account, protect_account, install_driver\n\n# Install browser driver\ninstall_driver()\n\nemail = 'your-email@gmail.com'\nusername = 'PolishCardinal69'\npassword = '31vV3X1zy8YP'\n\n# Create account\ncreate_account(email, username, password)\n\n# Protect account from being suspended of being a bot\nprotect_account(username, password)\n\n# Done!\n```\n\nUsing proxy:\n\n```python\nfrom reddit_account_generator import create_account, protect_account, install_driver\nfrom reddit_account_generator.proxies import TorProxy\n\nemail = 'your-email@gmail.com'\n# Username and password will be generated automatically\n\nproxy = TorProxy(TOR_IP, TOR_PORT, TOR_PASSWORD, TOR_CONTROL_PORT, TOR_DELAY)\n\nuname, pwd = create_account(email, proxy=proxy.get_next())\nprotect_account(username=uname, password=pwd)  # Proxy not required\n```\n\n\n## Requirements\n\n- Python 3.7+\n- [selenium](https://pypi.org/project/selenium/)\n- [selenium-recaptcha-solver](https://pypi.org/project/selenium-recaptcha-solver/)\n- [random-username](https://pypi.org/project/random-username/)\n- [webdriverdownloader](https://pypi.org/project/webdriverdownloader/)\n- [stem](https://pypi.org/project/stem/)\n- [coloredlogs](https://pypi.org/project/coloredlogs/) *optional\n\n## Contributing\n\nContributions to this project are welcome! Feel free to open issues or submit pull requests.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n---\n\n**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.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Automatic reddit account generator on selenium.",
    "version": "1.3.1",
    "project_urls": {
        "Homepage": "https://github.com/cubicbyte/reddit-account-generator"
    },
    "split_keywords": [
        "python",
        "reddit",
        "account-generator",
        "account-maker",
        "account-generation",
        "r-place",
        "rplace"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9e70dfd287ebf033241c529e358f6e9088b7cbeab8dae0e96ebdd3ed3839aac",
                "md5": "c110c16c624653ddb855cb53bf295bd0",
                "sha256": "086d79ad01791407b7b886c108d1bba66ec35395c5135552dd536ff6fe552335"
            },
            "downloads": -1,
            "filename": "reddit_account_generator-1.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c110c16c624653ddb855cb53bf295bd0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 11862,
            "upload_time": "2023-09-07T16:38:47",
            "upload_time_iso_8601": "2023-09-07T16:38:47.945930Z",
            "url": "https://files.pythonhosted.org/packages/a9/e7/0dfd287ebf033241c529e358f6e9088b7cbeab8dae0e96ebdd3ed3839aac/reddit_account_generator-1.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "989ebbef86c562ab4217f3002beb41a49a6f46dceae412525a3c6425aa217704",
                "md5": "beeb108c696b929f357543b183d313be",
                "sha256": "1822e672f4adf116416a4abdf7e7df3e7f4c7364cfe6529824284200761c3317"
            },
            "downloads": -1,
            "filename": "reddit-account-generator-1.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "beeb108c696b929f357543b183d313be",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 11770,
            "upload_time": "2023-09-07T16:38:49",
            "upload_time_iso_8601": "2023-09-07T16:38:49.076508Z",
            "url": "https://files.pythonhosted.org/packages/98/9e/bbef86c562ab4217f3002beb41a49a6f46dceae412525a3c6425aa217704/reddit-account-generator-1.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-07 16:38:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cubicbyte",
    "github_project": "reddit-account-generator",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "reddit-account-generator"
}
        
Elapsed time: 0.11609s