Skip to content

Instantly share code, notes, and snippets.

@f13end
Created April 23, 2020 23:19
Show Gist options
  • Save f13end/66e2b7a0563cc116f46c4b0cb2afb01f to your computer and use it in GitHub Desktop.
Save f13end/66e2b7a0563cc116f46c4b0cb2afb01f to your computer and use it in GitHub Desktop.
DISCORD NITRO GENERATOR
import random
import string
from colorama import init, Fore, Back, Style
import colorama
init(convert=True)
f = open('nitro_codes.txt', 'a')
amount = int(input())
fix = 1
while fix <= amount:
code = ('').join(random.choices(string.ascii_letters + string.digits, k=16))
discord_url = "https://discordapp.com/gifts/"
f.write(discord_url + code + '\n')
discord_code = discord_url + code
print(Fore.GREEN + discord_code)
fix += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment