Skip to content

Commit 078c671

Browse files
committed
final edit
1 parent 91a2337 commit 078c671

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
# password-generator
2-
1+
# Simple Password in Python
2+
------------------------------
33
A simple password generator with the ability to create passwords based on user input or customizable for personal Goochic projects. This program is executed in Python and is made up of three files for further customization. To get started, run the file "run.py".
44

55
You can change password patterns by modifying the "password.py" file
66

7-
# The license for this project is for
7+
#### Create a password with 50 characters.
8+
![Create a password with 50 characters](img/001.PNG)
9+
10+
#### Create a password with 6 characters.
11+
![Create a password with 6 characters](img/002.PNG)
12+
13+
-----------------------------
14+
### The license for this project is for
815
This is a password-generator project, used in Quera's Git course.
916
All Rights Reserved @ Quera
10-

run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from data import *
22
from generator import generate_password
33

4-
password_length = int(input("How long should the password be? "))
4+
password_length = int(input("\n How long should the password be : "))
55

66
data = alphabet + numbers + special_characters
77
password = generate_password(password_length, data)
8-
print("Here is your password: {}".format(password))
8+
print("\n your password => {}\n".format(password))

0 commit comments

Comments
 (0)