zenpass
v1.0.5
لإنشاء كلمات مرور عشوائية وقوية.
pip install -U zenpass
usage: zenpass [options]
optional arguments:
-h, --help show this help message and exit
-v, --version show version number and exit.
to customize Password:
-l , --length to set length to the password
-n , --ignore to ignore unwanted characters to the password
-i , --include to include characters to the password
-o , --only to create password only using wanted characters
-s , --separator the separator character
-c , --seplen the length of characters between separator
--repeat to repeat the characters in the password (default : False)
--separation to separate password characters using separator (default : False)
--show to show password (default : False)
keywords: [alphabets, uppercase, lowercase, numbers, symbols]
can be given as input for following params: ignore, include, only
لإنشاء كلمة مرور عشوائية.
from zenpass import PasswordGenerator
pg = PasswordGenerator ()
pg . generate ()لإنشاء كلمة مرور عشوائية.
$ zenpass
Password copied to clipboard.
لتعيين طول كلمة المرور ، يكون طول كلمة المرور الافتراضية 8-16 .
$ zenpass -l 10 --show
Password: Q3m/vro|uR
Password copied to clipboard.
ما إذا كانت الأحرف في كلمات المرور تكرار أم لا ، القيمة الافتراضية repeat False .
$ zenpass -r --show
Password: 96Ndl;1D$jQu4Z2
Password copied to clipboard.
لتضمين ، تجاهل أو استخدام 'alphabets' ، 'numbers' ، 'uppercase' ، 'lowercase' ، 'symbols' random characters في توليد كلمة المرور.
لتجاهل numbers في كلمات المرور.
$ zenpass -n numbers --show
Password: uyMXP‘$!ZSCYqzj
Password copied to clipboard.
لتجاهل الشخصيات a,b,c,d,e
$ zenpass -n abcde --show
Password: ~}t"R‘jF'ksG8~E
Password copied to clipboard.
لإنشاء كلمة مرور فقط باستخدام special characters .
$ zenpass -o symbols -l 15 --show
Password: ?)".=-_^[_‘~{.)
Password copied to clipboard.
لتضمين أحرف a,b,c,d,e في كلمة مرور.
$ zenpass -o numbers -i abcde -l 15 --show
Password: 78713d1e3d926a3
Password copied to clipboard.
لفصل الأحرف في كلمة مرور باستخدام فاصل.
$ zenpass -o uppercase --separation -l 16 --show
Password: YNQC-RKBF-DMAT-UVIP
Password copied to clipboard.
لفصل الأحرف في كلمة مرور باستخدام فاصل _ مع 5 أحرف بين كل فاصل.
$ zenpass -o uppercase --separation -l 15 -s _ -c 5 --show
Password: YNQCR_KBFDM_ATUVI
Password copied to clipboard.
إذا واجهت أي مشاكل ، فيرجى تقديم مشكلة مع وصف مفصل.