kpass-gen 0.2.0__py3-none-any.whl → 0.2.1__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.
- kpass/__init__.py +1 -1
- {kpass_gen-0.2.0.dist-info → kpass_gen-0.2.1.dist-info}/METADATA +6 -6
- kpass_gen-0.2.1.dist-info/RECORD +7 -0
- kpass_gen-0.2.0.dist-info/RECORD +0 -7
- {kpass_gen-0.2.0.dist-info → kpass_gen-0.2.1.dist-info}/WHEEL +0 -0
- {kpass_gen-0.2.0.dist-info → kpass_gen-0.2.1.dist-info}/licenses/LICENSE.txt +0 -0
- {kpass_gen-0.2.0.dist-info → kpass_gen-0.2.1.dist-info}/top_level.txt +0 -0
kpass/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: kpass-gen
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: kpass is a simple password generator based on full name, age, and birthdate.
|
5
5
|
Author-email: "Lucas Paulino Da Silva (KsxDynamic)" <lucas.workps@gmail.com>
|
6
6
|
License: MIT License
|
@@ -78,9 +78,9 @@ generator(
|
|
78
78
|
```python
|
79
79
|
from kpass import aplly_ciphers
|
80
80
|
|
81
|
-
original = "
|
81
|
+
original = "Panam Palmer"
|
82
82
|
leet = aplly_ciphers(original)
|
83
|
-
print(leet) # → "
|
83
|
+
print(leet) # → "|D4|\|4/\/\ |D41/\/\312" (example)
|
84
84
|
```
|
85
85
|
|
86
86
|
---
|
@@ -92,7 +92,7 @@ If you already have a list of passwords and only want to save them:
|
|
92
92
|
```python
|
93
93
|
from kpass import save_to_txt
|
94
94
|
|
95
|
-
passwords = ["
|
95
|
+
passwords = ["2077!", "Johnny34@", "V24!23"]
|
96
96
|
save_to_txt(passwords, file_name="my_passwords.txt")
|
97
97
|
```
|
98
98
|
|
@@ -104,11 +104,11 @@ save_to_txt(passwords, file_name="my_passwords.txt")
|
|
104
104
|
from kpass import verify
|
105
105
|
|
106
106
|
# Returns a numeric score (0–6)
|
107
|
-
score = verify(password="
|
107
|
+
score = verify(password="J4ckw$$l190s", want_verdict=False)
|
108
108
|
print(score) # → 6
|
109
109
|
|
110
110
|
# Returns a hashtag verdict
|
111
|
-
label = verify(password="
|
111
|
+
label = verify(password="J4ckw$$l190s", want_verdict=True)
|
112
112
|
print(label) # → "#very_strong"
|
113
113
|
```
|
114
114
|
|
@@ -0,0 +1,7 @@
|
|
1
|
+
kpass/__init__.py,sha256=XzsGQGWYV27zjIrYISiPMyb8X7dWgLGKSXj734HhYJI,287
|
2
|
+
kpass/main.py,sha256=Rc10h0zP4GXHIf6yJbOnD6n-RgnrJHlEUV1ZLo_BVnc,8112
|
3
|
+
kpass_gen-0.2.1.dist-info/licenses/LICENSE.txt,sha256=Qv2ilebwoUtMJnRsZwRy729xS5JZQzLauJ0tQzkAkTA,1088
|
4
|
+
kpass_gen-0.2.1.dist-info/METADATA,sha256=d4pbwCGDhYFiLyA8X7A6d9EaVsJYVSGcyoeC7J7E96A,5079
|
5
|
+
kpass_gen-0.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
+
kpass_gen-0.2.1.dist-info/top_level.txt,sha256=l8YfdoHutpiGNi7Zw-_bkGH48JGtmWU2Ac6nwvSb3dU,6
|
7
|
+
kpass_gen-0.2.1.dist-info/RECORD,,
|
kpass_gen-0.2.0.dist-info/RECORD
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
kpass/__init__.py,sha256=bUr2UtraVAjFR9W9po0s0pRyNKoPFOG8rnrjPda9Gso,287
|
2
|
-
kpass/main.py,sha256=Rc10h0zP4GXHIf6yJbOnD6n-RgnrJHlEUV1ZLo_BVnc,8112
|
3
|
-
kpass_gen-0.2.0.dist-info/licenses/LICENSE.txt,sha256=Qv2ilebwoUtMJnRsZwRy729xS5JZQzLauJ0tQzkAkTA,1088
|
4
|
-
kpass_gen-0.2.0.dist-info/METADATA,sha256=438Fn1LAAha1AKCvJP23c064ce91lgsxjRkkZ6PcB6w,5059
|
5
|
-
kpass_gen-0.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
-
kpass_gen-0.2.0.dist-info/top_level.txt,sha256=l8YfdoHutpiGNi7Zw-_bkGH48JGtmWU2Ac6nwvSb3dU,6
|
7
|
-
kpass_gen-0.2.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|