Categories > Coding > Python >

(Python) Password Generator

Posts: 2

Threads: 1

Joined: Jan, 2023

Reputation: 0

Posted

 

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

  • 0

Posts: 2

Threads: 0

Joined: Dec, 2022

Reputation: -10

Replied

My friends advised me who to contact if you need a Trans load warehouse I often need their services, you can also turn to them , I wish you a good day and sincerely hope I could help someone with my advice)))

  • 0

Entity

Usability >> modern

vip

Posts: 416

Threads: 40

Joined: May, 2022

Reputation: 51

Replied

oh hii not problem dude :))

  • 1

UltimaX

Lux14

Posts: 8

Threads: 0

Joined: Jan, 2023

Reputation: -24

Replied

I only been on comunity for one hor but stap making pasword generator

  • 0

Added

i look one time and the guy altenate d madke the firs pasword generator on python in novmeber. unless there more before

  • 0

Added

no the guy name aja make first paswors generator

  • 0

im Lux14 im back you cant get rid of me


I AM LUX14 DONT LISTEN TO THE OTHER LUX14 IM MENTINALY INSANE AND I HAVE IDENTIFY CRISIS

and I make new exploit called Ultima

Posts: 47

Threads: 6

Joined: Jan, 2023

Reputation: 3

Replied

Use flutter lol

  • 0

I bet you a dollar you saw this.

Posts: 1

Threads: 0

Joined: Apr, 2023

Reputation: 0

Replied

I recommend to use pyperclip module to copy the password when you have clicked the password generator, it will get easier if you want to write a password.

import string
import random
import pyperclip #We imported pyperclip module
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)
    pyperclip.copy(''.join(password)) #We have used the one of methods pyperclip (copy method)
    lbl.destroy()
    lbl2=Label(window, text="Your Password is " + "".join(password))
    lbl3=Label(window, text="You have copied the password! :D", fg='blue')
    lbl3.place(x=60, y=70)
    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()

 

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )