psswd_box 1.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- psswd_box/__init__.py +0 -0
- psswd_box/app.py +212 -0
- psswd_box/password_generator.py +148 -0
- psswd_box/resources/configs/config.yaml +8 -0
- psswd_box/resources/configs/themes.yaml +15 -0
- psswd_box/resources/gifs/app_showcase.gif +0 -0
- psswd_box/resources/images/psswd_box-128.png +0 -0
- psswd_box/resources/images/psswd_box-16.png +0 -0
- psswd_box/resources/images/psswd_box-256.png +0 -0
- psswd_box/resources/images/psswd_box-32.png +0 -0
- psswd_box/resources/images/psswd_box-512.png +0 -0
- psswd_box/resources/images/psswd_box-64.png +0 -0
- psswd_box/yaml_file_handler.py +18 -0
- psswd_box-1.2.2.dist-info/METADATA +31 -0
- psswd_box-1.2.2.dist-info/RECORD +18 -0
- psswd_box-1.2.2.dist-info/WHEEL +4 -0
- psswd_box-1.2.2.dist-info/entry_points.txt +2 -0
- psswd_box-1.2.2.dist-info/licenses/LICENSE +19 -0
psswd_box/__init__.py
ADDED
|
File without changes
|
psswd_box/app.py
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Password generator that never leaves your machine.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
from PySide6.QtCore import Qt
|
|
8
|
+
from PySide6.QtGui import QFont, QFontMetrics
|
|
9
|
+
from PySide6.QtWidgets import (
|
|
10
|
+
QApplication,
|
|
11
|
+
QMainWindow,
|
|
12
|
+
QWidget,
|
|
13
|
+
QPushButton,
|
|
14
|
+
QCheckBox,
|
|
15
|
+
QLabel,
|
|
16
|
+
QHBoxLayout,
|
|
17
|
+
QSpinBox,
|
|
18
|
+
QGridLayout,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
from psswd_box.password_generator import PasswordGenerator
|
|
22
|
+
from psswd_box.yaml_file_handler import YamlFileHandler
|
|
23
|
+
|
|
24
|
+
config_file = YamlFileHandler("resources/configs/config.yaml")
|
|
25
|
+
config = config_file.load_yaml_file()
|
|
26
|
+
|
|
27
|
+
themes_file = YamlFileHandler("resources/configs/themes.yaml")
|
|
28
|
+
themes = themes_file.load_yaml_file()
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class PsswdBox(QMainWindow):
|
|
32
|
+
def __init__(self):
|
|
33
|
+
super().__init__()
|
|
34
|
+
self.init_ui()
|
|
35
|
+
|
|
36
|
+
def init_ui(self):
|
|
37
|
+
self.show()
|
|
38
|
+
|
|
39
|
+
# * Set window default settings
|
|
40
|
+
self.setWindowTitle(config["window_title"])
|
|
41
|
+
self.setFixedSize(
|
|
42
|
+
config["window_size"]["width"], config["window_size"]["height"]
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
# * Define normal variables
|
|
46
|
+
self.theme_list = [theme for theme in list(themes)[:-1]]
|
|
47
|
+
|
|
48
|
+
# * Create end user widgets and apply settings to them
|
|
49
|
+
self.generate_password = QPushButton("Generate and Copy Password")
|
|
50
|
+
|
|
51
|
+
self.password = QLabel(
|
|
52
|
+
" ", alignment=Qt.AlignmentFlag.AlignCenter, wordWrap=False
|
|
53
|
+
)
|
|
54
|
+
self.password.setFixedWidth(560)
|
|
55
|
+
|
|
56
|
+
self.lowercase_letters = QCheckBox("Lowercase")
|
|
57
|
+
self.lowercase_letters.setCheckState(Qt.CheckState.Checked)
|
|
58
|
+
|
|
59
|
+
self.uppercase_letters = QCheckBox("Uppercase")
|
|
60
|
+
self.uppercase_letters.setCheckState(Qt.CheckState.Checked)
|
|
61
|
+
|
|
62
|
+
self.numbers = QCheckBox("Numbers")
|
|
63
|
+
self.numbers.setCheckState(Qt.CheckState.Checked)
|
|
64
|
+
|
|
65
|
+
self.symbols = QCheckBox("Symbols")
|
|
66
|
+
self.symbols.setCheckState(Qt.CheckState.Checked)
|
|
67
|
+
|
|
68
|
+
self.num_characters = QSpinBox(prefix="Number of Characters: ")
|
|
69
|
+
self.num_characters.setRange(
|
|
70
|
+
config["num_characters"]["min"], config["num_characters"]["max"]
|
|
71
|
+
)
|
|
72
|
+
self.num_characters.setValue(config["num_characters"]["default"])
|
|
73
|
+
|
|
74
|
+
self.theme_toggle = QPushButton("Dark")
|
|
75
|
+
|
|
76
|
+
# * Define button connections and/or actions
|
|
77
|
+
self.generate_password.pressed.connect(self.get_password)
|
|
78
|
+
self.generate_password.pressed.connect(self.copy_text)
|
|
79
|
+
self.theme_toggle.pressed.connect(self.toggle_theme)
|
|
80
|
+
|
|
81
|
+
# * Create layouts
|
|
82
|
+
self.page = QGridLayout()
|
|
83
|
+
self.inputs = QGridLayout()
|
|
84
|
+
self.outputs = QHBoxLayout()
|
|
85
|
+
|
|
86
|
+
# * Add widgets to layouts
|
|
87
|
+
self.inputs.addWidget(self.generate_password, 0, 0, 1, 2)
|
|
88
|
+
self.inputs.addWidget(self.lowercase_letters, 1, 0)
|
|
89
|
+
self.inputs.addWidget(self.uppercase_letters, 1, 1)
|
|
90
|
+
self.inputs.addWidget(self.numbers, 2, 0)
|
|
91
|
+
self.inputs.addWidget(self.symbols, 2, 1)
|
|
92
|
+
self.inputs.addWidget(self.num_characters, 3, 0, 1, 2)
|
|
93
|
+
self.inputs.addWidget(self.theme_toggle, 4, 0, 1, 2)
|
|
94
|
+
|
|
95
|
+
self.outputs.addWidget(self.password)
|
|
96
|
+
|
|
97
|
+
# * Setup overall page layout and set default window theme
|
|
98
|
+
self.page.addLayout(self.inputs, 0, 0)
|
|
99
|
+
self.page.addLayout(self.outputs, 0, 2)
|
|
100
|
+
|
|
101
|
+
self.gui = QWidget()
|
|
102
|
+
self.gui.setLayout(self.page)
|
|
103
|
+
|
|
104
|
+
self.setCentralWidget(self.gui)
|
|
105
|
+
|
|
106
|
+
self.apply_theme(self.theme_toggle.text().lower())
|
|
107
|
+
self.set_font()
|
|
108
|
+
|
|
109
|
+
def get_password(self):
|
|
110
|
+
character_types = self.get_character_types()
|
|
111
|
+
if character_types == ["n", "n", "n", "n"]:
|
|
112
|
+
self.password.setText("You MUST select one of the character types below!")
|
|
113
|
+
else:
|
|
114
|
+
psswd = PasswordGenerator()
|
|
115
|
+
self.password.setText(
|
|
116
|
+
psswd.generate_password(character_types, self.num_characters.value())
|
|
117
|
+
)
|
|
118
|
+
self.set_font_password()
|
|
119
|
+
|
|
120
|
+
def get_character_types(self):
|
|
121
|
+
lowercase_letters_value = "y" if self.lowercase_letters.isChecked() else "n"
|
|
122
|
+
uppercase_letters_value = "y" if self.uppercase_letters.isChecked() else "n"
|
|
123
|
+
numbers_value = "y" if self.numbers.isChecked() else "n"
|
|
124
|
+
symbols_value = "y" if self.symbols.isChecked() else "n"
|
|
125
|
+
character_types = [
|
|
126
|
+
lowercase_letters_value,
|
|
127
|
+
uppercase_letters_value,
|
|
128
|
+
numbers_value,
|
|
129
|
+
symbols_value,
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
return character_types
|
|
133
|
+
|
|
134
|
+
def copy_text(self):
|
|
135
|
+
clipboard = QApplication.clipboard()
|
|
136
|
+
clipboard.setText(self.password.text())
|
|
137
|
+
|
|
138
|
+
def toggle_theme(self):
|
|
139
|
+
if self.theme_toggle.text() == "Dark":
|
|
140
|
+
self.theme_toggle.setText("Light")
|
|
141
|
+
theme = self.theme_toggle.text()
|
|
142
|
+
else:
|
|
143
|
+
self.theme_toggle.setText("Dark")
|
|
144
|
+
theme = self.theme_toggle.text()
|
|
145
|
+
|
|
146
|
+
self.apply_theme(theme.lower())
|
|
147
|
+
|
|
148
|
+
def apply_theme(self, theme):
|
|
149
|
+
self.main_stylesheet = f"""
|
|
150
|
+
background-color: {themes[theme]["background-color"]};
|
|
151
|
+
color: {themes[theme]["color"]};
|
|
152
|
+
border: {themes[theme]["border"]};
|
|
153
|
+
border-radius: {themes["general"]["border-radius"]};
|
|
154
|
+
padding: {themes["general"]["padding"]};
|
|
155
|
+
"""
|
|
156
|
+
self.widget_stylesheet = f"""
|
|
157
|
+
background-color: {themes[theme]["widget-background-color"]};
|
|
158
|
+
"""
|
|
159
|
+
self.setStyleSheet(self.main_stylesheet)
|
|
160
|
+
self.password.setStyleSheet(self.widget_stylesheet)
|
|
161
|
+
self.generate_password.setStyleSheet(self.widget_stylesheet)
|
|
162
|
+
self.lowercase_letters.setStyleSheet(self.widget_stylesheet)
|
|
163
|
+
self.uppercase_letters.setStyleSheet(self.widget_stylesheet)
|
|
164
|
+
self.numbers.setStyleSheet(self.widget_stylesheet)
|
|
165
|
+
self.symbols.setStyleSheet(self.widget_stylesheet)
|
|
166
|
+
self.theme_toggle.setStyleSheet(self.widget_stylesheet)
|
|
167
|
+
self.num_characters.setStyleSheet(self.widget_stylesheet)
|
|
168
|
+
|
|
169
|
+
(
|
|
170
|
+
self.theme_toggle.setText("Dark")
|
|
171
|
+
if theme == "dark"
|
|
172
|
+
else self.theme_toggle.setText("Light")
|
|
173
|
+
)
|
|
174
|
+
|
|
175
|
+
def set_font(self):
|
|
176
|
+
font = QFont("Commit Mono Nerd Font", 9)
|
|
177
|
+
|
|
178
|
+
self.setFont(font)
|
|
179
|
+
self.generate_password.setFont(font)
|
|
180
|
+
self.lowercase_letters.setFont(font)
|
|
181
|
+
self.uppercase_letters.setFont(font)
|
|
182
|
+
self.numbers.setFont(font)
|
|
183
|
+
self.symbols.setFont(font)
|
|
184
|
+
self.theme_toggle.setFont(font)
|
|
185
|
+
self.num_characters.setFont(font)
|
|
186
|
+
|
|
187
|
+
def set_font_password(self):
|
|
188
|
+
min_font_size = 11
|
|
189
|
+
current_font_size = 65
|
|
190
|
+
font = QFont("Commit Mono Nerd Font")
|
|
191
|
+
|
|
192
|
+
while current_font_size >= min_font_size:
|
|
193
|
+
font.setPointSize(current_font_size)
|
|
194
|
+
|
|
195
|
+
if (
|
|
196
|
+
QFontMetrics(font).horizontalAdvance(self.password.text())
|
|
197
|
+
< self.password.width() - 10
|
|
198
|
+
):
|
|
199
|
+
self.password.setFont(font)
|
|
200
|
+
return
|
|
201
|
+
|
|
202
|
+
current_font_size -= 1
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
def main():
|
|
206
|
+
app = QApplication(sys.argv)
|
|
207
|
+
main_window = PsswdBox() # noqa: F841
|
|
208
|
+
sys.exit(app.exec())
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
if __name__ == "__main__":
|
|
212
|
+
main()
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
from secrets import choice
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class PasswordGenerator:
|
|
5
|
+
def __init__(self):
|
|
6
|
+
self.lowercase_letters = [
|
|
7
|
+
"a",
|
|
8
|
+
"b",
|
|
9
|
+
"c",
|
|
10
|
+
"d",
|
|
11
|
+
"e",
|
|
12
|
+
"f",
|
|
13
|
+
"g",
|
|
14
|
+
"h",
|
|
15
|
+
"i",
|
|
16
|
+
"j",
|
|
17
|
+
"k",
|
|
18
|
+
"l",
|
|
19
|
+
"m",
|
|
20
|
+
"n",
|
|
21
|
+
"o",
|
|
22
|
+
"p",
|
|
23
|
+
"q",
|
|
24
|
+
"r",
|
|
25
|
+
"s",
|
|
26
|
+
"t",
|
|
27
|
+
"u",
|
|
28
|
+
"v",
|
|
29
|
+
"x",
|
|
30
|
+
"x",
|
|
31
|
+
"y",
|
|
32
|
+
"z",
|
|
33
|
+
]
|
|
34
|
+
self.uppercase_letters = [
|
|
35
|
+
"A",
|
|
36
|
+
"B",
|
|
37
|
+
"C",
|
|
38
|
+
"D",
|
|
39
|
+
"E",
|
|
40
|
+
"F",
|
|
41
|
+
"G",
|
|
42
|
+
"H",
|
|
43
|
+
"I",
|
|
44
|
+
"J",
|
|
45
|
+
"K",
|
|
46
|
+
"L",
|
|
47
|
+
"M",
|
|
48
|
+
"N",
|
|
49
|
+
"O",
|
|
50
|
+
"P",
|
|
51
|
+
"Q",
|
|
52
|
+
"R",
|
|
53
|
+
"S",
|
|
54
|
+
"T",
|
|
55
|
+
"U",
|
|
56
|
+
"V",
|
|
57
|
+
"W",
|
|
58
|
+
"X",
|
|
59
|
+
"Y",
|
|
60
|
+
"Z",
|
|
61
|
+
]
|
|
62
|
+
self.numbers = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]
|
|
63
|
+
self.symbols = [
|
|
64
|
+
"!",
|
|
65
|
+
"@",
|
|
66
|
+
"#",
|
|
67
|
+
"$",
|
|
68
|
+
"%",
|
|
69
|
+
"^",
|
|
70
|
+
"&",
|
|
71
|
+
"*",
|
|
72
|
+
"(",
|
|
73
|
+
")",
|
|
74
|
+
"[",
|
|
75
|
+
"]",
|
|
76
|
+
"{",
|
|
77
|
+
"}",
|
|
78
|
+
"\\",
|
|
79
|
+
";",
|
|
80
|
+
":",
|
|
81
|
+
'"',
|
|
82
|
+
"'",
|
|
83
|
+
"<",
|
|
84
|
+
">",
|
|
85
|
+
"/",
|
|
86
|
+
"?",
|
|
87
|
+
",",
|
|
88
|
+
"`",
|
|
89
|
+
"~",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
def generate_password(
|
|
93
|
+
self, character_types=["y", "y", "y", "y"], num_characters=20
|
|
94
|
+
):
|
|
95
|
+
if character_types == ["n", "n", "n", "n"]:
|
|
96
|
+
print("You didn't include any character types... Exiting")
|
|
97
|
+
return exit()
|
|
98
|
+
|
|
99
|
+
choices = self.get_valid_choices(character_types)
|
|
100
|
+
character_counter = 0
|
|
101
|
+
psswd = ""
|
|
102
|
+
|
|
103
|
+
while character_counter < num_characters:
|
|
104
|
+
psswd += choice(choices)
|
|
105
|
+
character_counter += 1
|
|
106
|
+
|
|
107
|
+
return psswd
|
|
108
|
+
|
|
109
|
+
def get_valid_choices(self, character_types):
|
|
110
|
+
match character_types:
|
|
111
|
+
case ["y", "y", "y", "y"]:
|
|
112
|
+
return (
|
|
113
|
+
self.lowercase_letters
|
|
114
|
+
+ self.uppercase_letters
|
|
115
|
+
+ self.numbers
|
|
116
|
+
+ self.symbols
|
|
117
|
+
)
|
|
118
|
+
case ["y", "y", "y", "n"]:
|
|
119
|
+
return self.lowercase_letters + self.uppercase_letters + self.numbers
|
|
120
|
+
case ["y", "y", "n", "n"]:
|
|
121
|
+
return self.lowercase_letters + self.uppercase_letters
|
|
122
|
+
case ["y", "n", "n", "n"]:
|
|
123
|
+
return self.lowercase_letters
|
|
124
|
+
case ["y", "n", "y", "y"]:
|
|
125
|
+
return self.lowercase_letters + self.numbers + self.symbols
|
|
126
|
+
case ["y", "n", "y", "n"]:
|
|
127
|
+
return self.lowercase_letters + self.numbers
|
|
128
|
+
case ["y", "n", "n", "y"]:
|
|
129
|
+
return self.lowercase_letters + self.symbols
|
|
130
|
+
case ["y", "y", "n", "y"]:
|
|
131
|
+
return self.lowercase_letters + self.uppercase_letters + self.symbols
|
|
132
|
+
case ["n", "y", "y", "y"]:
|
|
133
|
+
return self.uppercase_letters + self.numbers + self.symbols
|
|
134
|
+
case ["n", "n", "y", "y"]:
|
|
135
|
+
return self.numbers + self.symbols
|
|
136
|
+
case ["n", "n", "n", "y"]:
|
|
137
|
+
return self.symbols
|
|
138
|
+
case ["n", "y", "n", "y"]:
|
|
139
|
+
return self.uppercase_letters + self.symbols
|
|
140
|
+
case ["n", "y", "n", "n"]:
|
|
141
|
+
return self.uppercase_letters
|
|
142
|
+
case ["n", "n", "y", "n"]:
|
|
143
|
+
return self.numbers
|
|
144
|
+
case ["n", "y", "y", "n"]:
|
|
145
|
+
return self.uppercase_letters + self.numbers
|
|
146
|
+
case ["n", "n", "n", "n"]:
|
|
147
|
+
print("You didn't include any character types... Exiting")
|
|
148
|
+
return exit()
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
light:
|
|
2
|
+
background-color: "#d8dee9"
|
|
3
|
+
color: "#2e3440"
|
|
4
|
+
border: 1px solid '#e5e9f0'
|
|
5
|
+
widget-background-color: "#eceff4"
|
|
6
|
+
|
|
7
|
+
dark:
|
|
8
|
+
background-color: "#2e3440"
|
|
9
|
+
color: "#eceff4"
|
|
10
|
+
border: 1px solid '#434c5e'
|
|
11
|
+
widget-background-color: "#4c566a"
|
|
12
|
+
|
|
13
|
+
general:
|
|
14
|
+
border-radius: "4px"
|
|
15
|
+
padding: "2px 4px"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import yaml
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class YamlFileHandler:
|
|
6
|
+
def __init__(self, filename):
|
|
7
|
+
self.filename = filename
|
|
8
|
+
|
|
9
|
+
def load_yaml_file(self):
|
|
10
|
+
with open(self.get_file_path(), "r") as f:
|
|
11
|
+
return yaml.safe_load(f)
|
|
12
|
+
|
|
13
|
+
def save_yaml_file(self, configs):
|
|
14
|
+
with open(self.get_file_path(), "w") as f:
|
|
15
|
+
return yaml.safe_dump(configs, f, default_flow_style=False)
|
|
16
|
+
|
|
17
|
+
def get_file_path(self):
|
|
18
|
+
return os.path.join(os.path.dirname(__file__), self.filename)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: psswd_box
|
|
3
|
+
Version: 1.2.2
|
|
4
|
+
Summary: Password generator that never leaves your machine.
|
|
5
|
+
Author-email: Melvin Quick <melvinquick@proton.me>
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Requires-Dist: pyside6>=6.8.2.1
|
|
9
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
<p align="center"> <img src="src/psswd_box/resources/images/psswd_box-256.png" /> </p>
|
|
13
|
+
|
|
14
|
+
## Donations
|
|
15
|
+
|
|
16
|
+
- [Buy Me A Coffee](https://www.buymeacoffee.com/KingKairos)
|
|
17
|
+
- [GitHub Sponsors](https://github.com/sponsors/melvinquick)
|
|
18
|
+
|
|
19
|
+
## Purpose
|
|
20
|
+
|
|
21
|
+
The general purpose of this app is to give people an easy way to generate passwords completely locally on their machine. This doesn't rely on a cloud service, or any information leaving the local machine whatsoever.
|
|
22
|
+
|
|
23
|
+
## App Showcase
|
|
24
|
+
|
|
25
|
+

|
|
26
|
+
|
|
27
|
+
## Useful Information
|
|
28
|
+
|
|
29
|
+
- [Project Goals](https://codeberg.org/melvinquick/psswd_box/projects/12633)
|
|
30
|
+
- [Latest Release](https://codeberg.org/melvinquick/psswd_box/releases/latest)
|
|
31
|
+
- [Releases](https://codeberg.org/melvinquick/psswd_box/releases)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
psswd_box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
psswd_box/app.py,sha256=WaZP8LsSzuuriFf4aHk94EGordBRc9RqYKKRVRDf3MU,7054
|
|
3
|
+
psswd_box/password_generator.py,sha256=Mz5tNHAPcWPFkdoqQEW9fwXy75t2mdrLi9QtCtF7hcc,3977
|
|
4
|
+
psswd_box/yaml_file_handler.py,sha256=Dy3r39zFYZqFc8iWaAkp3uNp9Ap8ws91A5Ph9yNLZuU,514
|
|
5
|
+
psswd_box/resources/configs/config.yaml,sha256=BKyuI9Mx6FddE3ok6HpnDrOKhpAD0JTxeeQHCotLezc,124
|
|
6
|
+
psswd_box/resources/configs/themes.yaml,sha256=uPacMWV5khSlnA0w_TddAo9sMFZwv6q8K9SRGlIiNBQ,315
|
|
7
|
+
psswd_box/resources/gifs/app_showcase.gif,sha256=qEZOnUKwgrKi1JwhxwYRJmbNUStG8CJ7r0AHenkf5FU,66377808
|
|
8
|
+
psswd_box/resources/images/psswd_box-128.png,sha256=n-jJjxiQq-F4ci571Mi2KslteYvIwKjsaog-hopVyyA,8810
|
|
9
|
+
psswd_box/resources/images/psswd_box-16.png,sha256=xlfYncD3Voz0gx9dBMm1cYsXVjRohOlBolCCGROtFw8,339
|
|
10
|
+
psswd_box/resources/images/psswd_box-256.png,sha256=nqKtu8p5d6eHMw6G8RpOrIBKVQeAxWXzG306VwXVvz4,27437
|
|
11
|
+
psswd_box/resources/images/psswd_box-32.png,sha256=xZJYVpVg54P15BpTUeoV23yZxvaeuaWd5u53U_cDGw4,988
|
|
12
|
+
psswd_box/resources/images/psswd_box-512.png,sha256=lJeNvOjE8wo8NgDXvVtySKdg92jZkC25CLhRC1DKFtY,26487
|
|
13
|
+
psswd_box/resources/images/psswd_box-64.png,sha256=1l4nXDr13g8tNuuBdEtH_4K1zLUYDDsiTGdMiHPlE_s,2900
|
|
14
|
+
psswd_box-1.2.2.dist-info/METADATA,sha256=E2laywVWh215Gr4f8KjLE8C0qtDFLuJdi5hn83mqAwU,1096
|
|
15
|
+
psswd_box-1.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
16
|
+
psswd_box-1.2.2.dist-info/entry_points.txt,sha256=CsoqGrssyqOJ618dlhlXb3Cnywsr0DdmB55f2dafK6A,45
|
|
17
|
+
psswd_box-1.2.2.dist-info/licenses/LICENSE,sha256=Qtra8ztedMMfw78koiULsuSfq7XoBz7jUSbakUWqlRw,1057
|
|
18
|
+
psswd_box-1.2.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2025, Melvin Quick
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|