├── .env.sample ├── .gitignore ├── AccountGen ├── __init__.py ├── __main__.py ├── plugins │ ├── __init__.py │ ├── generator.py │ ├── help.py │ ├── redisdb.py │ └── start.py └── utils.py ├── LICENSE ├── Procfile ├── ReadMe.md ├── app.json ├── extras ├── add_accounts.md ├── raw.png ├── redisinfo └── save_acc.png └── requirements.txt /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/.gitignore -------------------------------------------------------------------------------- /AccountGen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/AccountGen/__init__.py -------------------------------------------------------------------------------- /AccountGen/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/AccountGen/__main__.py -------------------------------------------------------------------------------- /AccountGen/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/AccountGen/plugins/__init__.py -------------------------------------------------------------------------------- /AccountGen/plugins/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/AccountGen/plugins/generator.py -------------------------------------------------------------------------------- /AccountGen/plugins/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/AccountGen/plugins/help.py -------------------------------------------------------------------------------- /AccountGen/plugins/redisdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/AccountGen/plugins/redisdb.py -------------------------------------------------------------------------------- /AccountGen/plugins/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/AccountGen/plugins/start.py -------------------------------------------------------------------------------- /AccountGen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/AccountGen/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | BotzHub: python -m AccountGen 2 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/ReadMe.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/app.json -------------------------------------------------------------------------------- /extras/add_accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/extras/add_accounts.md -------------------------------------------------------------------------------- /extras/raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/extras/raw.png -------------------------------------------------------------------------------- /extras/redisinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/extras/redisinfo -------------------------------------------------------------------------------- /extras/save_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/extras/save_acc.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/AccountsGenBot/HEAD/requirements.txt --------------------------------------------------------------------------------