├── .gitignore ├── LICENSE ├── README.md ├── README.txt ├── emails.txt ├── mega.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxuser-choice/Mega-Account-Creator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxuser-choice/Mega-Account-Creator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxuser-choice/Mega-Account-Creator/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxuser-choice/Mega-Account-Creator/HEAD/README.txt -------------------------------------------------------------------------------- /emails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxuser-choice/Mega-Account-Creator/HEAD/emails.txt -------------------------------------------------------------------------------- /mega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxuser-choice/Mega-Account-Creator/HEAD/mega.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium>=3.141.0 2 | faker --------------------------------------------------------------------------------