├── .gitignore ├── LICENSE ├── README.md ├── convert_csv.py ├── generate_accounts.py ├── img ├── bmc-button.png ├── demo.png └── readme-icon.png ├── requirements.txt └── signin_accounts.py /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | *.csv 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-o/MEGA-Account-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-o/MEGA-Account-Generator/HEAD/README.md -------------------------------------------------------------------------------- /convert_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-o/MEGA-Account-Generator/HEAD/convert_csv.py -------------------------------------------------------------------------------- /generate_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-o/MEGA-Account-Generator/HEAD/generate_accounts.py -------------------------------------------------------------------------------- /img/bmc-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-o/MEGA-Account-Generator/HEAD/img/bmc-button.png -------------------------------------------------------------------------------- /img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-o/MEGA-Account-Generator/HEAD/img/demo.png -------------------------------------------------------------------------------- /img/readme-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-o/MEGA-Account-Generator/HEAD/img/readme-icon.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | faker 3 | pymailtm -------------------------------------------------------------------------------- /signin_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-o/MEGA-Account-Generator/HEAD/signin_accounts.py --------------------------------------------------------------------------------