Discord nitro gen



snowesp

Basic
Joined
08.06.21
Messages
5
Reaction score
0
Points
1
Hi, I hava an experiment with a little script in python that can generate codes nitro discord but, I have not yet checker, so I propose you, even the code that you can record in python Smile
I am french, so it's in french, but it's easy do do, just hit a number, and the script will make a text file with the codes.

The Scipt is :

import random, string

print(">>> Générateur de Discord Nitro <<< ")

num=input('Nombre de codes: ')

f=open("Codes Nitro.txt","w", encoding='utf-8')

print("Generating...")

for n in range(int(num)):
y = ''.join(random.choice(string.ascii_uppercase + string.digits + string.ascii_lowercase) for _ in range(16))
f.write("https://discord.gift/" + y)
f.write("\n")

f.close()
input("\n\nTerminé, appuyez sur enter pour sortir. Codes enregistrés dans le fichier texte Codes Nitro")
 
Joined
18.12.21
Messages
5
Reaction score
0
Points
1
It seems the script is loading a file with keys ("Codes Nitro.txt"). I think this script might be useless without that file.
 
Top Bottom