├── .gitignore ├── LICENSE ├── README.md ├── creator ├── __init__.py ├── captcha.py ├── discord.py ├── email.py ├── phone.py └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | main.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/README.md -------------------------------------------------------------------------------- /creator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/creator/__init__.py -------------------------------------------------------------------------------- /creator/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/creator/captcha.py -------------------------------------------------------------------------------- /creator/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/creator/discord.py -------------------------------------------------------------------------------- /creator/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/creator/email.py -------------------------------------------------------------------------------- /creator/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/creator/phone.py -------------------------------------------------------------------------------- /creator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/creator/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/my-personal-hell/discord-account-generator/HEAD/requirements.txt --------------------------------------------------------------------------------