Profile Picture

RobloxZoid

Reputation: 0 [rate]

Joined: Jan, 2023

Last online:

Badges

badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Replied to thread : JJSploit safe?


i dont suggest going for jjsploit... just incase it isnt safe anyway just because it uses the API of wearedevs.net doesnt mean its safe i would suggest going for something like Novaline

Created a new thread : (Python) Password Generator


 

I didnt make the full thing i only made the tkinter window

 

import string
import random
from tkinter import *
window = Tk()
def generate ():
charecter = string.ascii_letters
password = []
for i in range(10): # Lenght
randomchar = random.choice(charecter)
password.append(randomchar)
lbl.destroy()
lbl2=Label(window, text="Your Password is " + "".join(password))
lbl2.place(x=65, y=50)

lbl=Label(window, text="Your Password will appear here", fg='red')
lbl.place(x=62, y=50)
btn=Button(window, text="Generate Password", fg='blue', command=generate)
btn.place(x=90, y=100)
window.title("Password Generator")
window.geometry("300x230")
window.mainloop()

 

 

 

 

 

 

 

Credit to this guy to making the actual generator: Entity's Profile | WeAreDevs

Here is the link to the origional post: [Release] Python Password Generator - WeAreDevs Forum