You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This program validates passwords to match specific rules. A valid password is one that conforms to the following rules:
4
+
- Minimum length is 6;
5
+
- Maximum length is 12;
6
+
- Contains at least an uppercase letter or a lowercase letter
7
+
- Contains at least a number;
8
+
- Contains at least a special character (such as @,+,£,$,%,*^,etc);
9
+
- Doesn't contain space(s).
10
+
11
+
# Prerequisites
12
+
13
+
It requires no prerequisites, you only need to run the script. If you don't have Python installed, you can visit [here](https://www.python.org/downloads/) to download Python.
14
+
15
+
# How to run the script
16
+
17
+
Running the script is pretty easy, open a terminal in the folder where your script is located and run the following command :
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,3 +53,4 @@ This is a collection of short Python scripts to solve and automate tasks and sim
53
53
32 | [**JSON-YAML**](https://github.com/decipher07/Useful-Python-scripts-collection/blob/master/JSON-YAML) | A Python script which converts JSON To YAML and Vice-Versa | JSON, YAML |
54
54
33 | [**CSV_to_JSON**](https://github.com/TechBoyy6/Python-scripts-collection/tree/master/CSV_to_JSON) | A script that converts the csv file into json file. | None |
55
55
34 | [**SMS-SENDER**](https://github.com/CopyrightC/Python-scripts-collection/blob/master/SMS_SENDER/main.py) | A python script that uses Tkinter and Twilio to send SMS. | twilio|
56
+
35 | [**Password Validator**](https://github.com/Mannuel25/Python-scripts-collection/tree/master/Password%20Validator) | A script validates passwords to match specific rules. A valid password is one that conforms to some specific rules. | None |
0 commit comments