├── .content ├── .gitignore ├── .version ├── LICENSE ├── README.md ├── main.py └── requirements.txt /.content: -------------------------------------------------------------------------------- 1 | main.py 2 | requirements.txt 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilGeek/AccountGeneratorPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilGeek/AccountGeneratorPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilGeek/AccountGeneratorPlus/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilGeek/AccountGeneratorPlus/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyfiglet 2 | requests 3 | --------------------------------------------------------------------------------