-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnitro.py
More file actions
40 lines (27 loc) · 797 Bytes
/
nitro.py
File metadata and controls
40 lines (27 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import os, time, random, sys
from colorium import *
uzunluk = 24
def genwin():
os.system("cls")
while True:
print("https://discord.gift/", end="")
for i in range(uzunluk):
nitro = random.choice(chars)
print(nitro, end="")
print("")
time.sleep(0.5)
def gen():
os.system("clear")
while True:
print("https://discord.gift/", end="")
for i in range(uzunluk):
nitro = random.choice(chars)
print(nitro, end="")
print("")
time.sleep(0.5)
chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789"
oscheck = os.name
if oscheck == "nt":
genwin()
elif oscheck == "posix":
gen()