Skip to content

Commit 9df6fe0

Browse files
committed
made an exe of app
1 parent 10c0585 commit 9df6fe0

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea
22
venv
33
__pycache__/
4-
Data
4+
Data
5+
dist

Password Manager/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ No need to remember your each and every password anymore, all you need is just r
55
your account, and you can access all of your passwords in a single place. You can also generate strong passwords for
66
your accounts and keep your accounts safe.
77

8-
# Made Using
9-
Tkinter
10-
smtplib
11-
socket
12-
os
13-
cryptography
8+
## Made Using
9+
- Tkinter
10+
- smtplib
11+
- socket
12+
- os
13+
- cryptography
1414

1515
## Attribution:
1616
The images and the custom ttk theme used in this application is not owned by me.

Password Manager/app.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
DATA_FOLDER = os.path.join(os.getcwd(), "Data")
1313
USERS_FOLDER = os.path.join(DATA_FOLDER, "Users")
1414

15-
1615
class PasswordManager(Tk):
1716
"""Root of the application"""
1817

Password Manager/functions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import random
33
from cryptography.fernet import Fernet
44

5-
65
def generate_password():
76
"""Generates a random password"""
87
alphabets = list(string.ascii_letters)

Password Manager/lock.ico

108 KB
Binary file not shown.

0 commit comments

Comments
 (0)