-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathus.py
More file actions
32 lines (31 loc) · 739 Bytes
/
us.py
File metadata and controls
32 lines (31 loc) · 739 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
import random
from random import randint
import string
import uuid
import os
import time
from time import sleep
from colorama import Fore
import sys
print("")
print(Fore.RED+" "+" report username")
sleep(2.0)
print("\n")
sleep(2.0)
print("\n"*80)
Sdf = """
telesm server """
for i in Sdf:
sleep(0.02)
print(i,end='',flush=True)
print()
print(Fore.RED+" for you ")
sleep(2.1)
print()
def random_string_genera_variable_size(min_size, max_size, allowed_chars):
return ''.join(random.choice(allowed_chars) for x in range(randint(min_size, max_size)))
chars = string.ascii_letters + string.punctuation
print(" "+Fore.YELLOW+'reporter account—>> ', random_string_genera_variable_size(6, 24, chars))
print()
time.sleep(1)
print ()