Skip to main content

Questions tagged [password-generator]

Password generators are programs that generate text passwords from a random data stream.

9 votes
1 answer
860 views

Typical password generator in Python

Password generators are extremely popular on CodeReview with beginners to both coding in general and Python in particular, for a number of reasons: They're (seemingly) easy to implement They offer an ...
8 votes
2 answers
1k views

Beginner level password generator optimization

I've been learning python for a few days now, and I programmed this password generator after today's lesson (following the 100 days of code on udemy course). This code works like it should and gives ...
PSapola's user avatar
  • 83
0 votes
1 answer
162 views

Python - beginner level - password manager GUI

I have been learning Python for 1.5 months now. I am learning in my free time between jobs and other life commitments so my progress may be slow or it may take time for me to reply but I am interested ...
sean's user avatar
  • 61
0 votes
2 answers
213 views

Generate random password from a list of allowed characters

The code itself is a random password generator which is encapsulated. The other question about this code is whether it should be encapsulated on its main function. Or is it enough to exist in its own ...
KhodeNima's user avatar
3 votes
1 answer
150 views

Python command line password generator

After giving a couple of well-received answers to similar questions, I thought I'd try to come up with my own solution. I believe that a good password generator can and should be quite simple without ...
gazoh's user avatar
  • 3,359
2 votes
0 answers
141 views

Truly cryptographically secure password generator in Python, version 2

Following suggestions from answers from my previous question, I have completely rewrote my script, to make it more concise and Pythonic, truly cryptographically secure, and added more functionality. ...
Ξένη Γήινος's user avatar
10 votes
3 answers
2k views

Python command-line program that generates passwords

I took my code from this answer by me, I found it useful, so I developed it further, and here is the result. This script generates cryptographically secure passwords. The characters used by the ...
Ξένη Γήινος's user avatar
1 vote
1 answer
150 views

Password keeper / generator application in Python

I've written this password-keeper application to keep my passwords safe in one place. From something over few lines it grew to almost 200 lines of code. I would greatly appreciate it if someone could ...
Paichiwo's user avatar
  • 161
4 votes
1 answer
124 views

Python Password Generator with custom parameters

I have the following code here It's a password generator that lets you choose a completely random password with a certain length of a custom password with different amounts of character types. I want ...
jakelarson06's user avatar
1 vote
1 answer
164 views

Python password generator with Tkinter

I program in Python as a hobby and this week I decided to write a program that generates 16 character long passwords. I wrote this program as a class, which i rarely do. Because of this I think I ...
liteversion's user avatar
2 votes
2 answers
238 views

commandline Password-Generator in Kotlin

So I (a newbie to programming) wrote this password-generator as one of my very first programs in Kotlin. I started with Java a few weeks ago. I soon realized that Java was too hard for me, so I ...
RobertVanGaalen's user avatar
9 votes
6 answers
3k views

Python password generator class

I am a self taught python developer and I trying to write clean code as mush as possible. Since I do not have any environment that can give me constructive criticism, I would like to hear your ...
TheOriginalOdis's user avatar
5 votes
2 answers
436 views

Simple password generator with a GUI

I made a simple password-generating app with a GUI written in Python and the tkinter library. Here's how the GUI looks like: The passwords are strings composed of ...
janq0's user avatar
  • 53
2 votes
1 answer
83 views

Password generator - different solutions

I made a simple password generator (once again). ...
Tronzen's user avatar
  • 193
6 votes
2 answers
767 views

Password Generator with injected password model

I'm getting started with Python and one of the beginner projects to learn the language was a password generator (one of the dozens already in CodeReview). I have a C# and JS background so I want to ...
ZeroBased_IX's user avatar

15 30 50 per page