├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── pull_request_template.md ├── LICENCE ├── README.md ├── assets ├── example.png └── logo.png ├── main.py └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/assets/example.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/assets/logo.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicguy1/Discord-Nitro-Generator-and-Checker/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | discord_webhook 3 | colored 4 | numpy --------------------------------------------------------------------------------