Browse Source

Create widget to check phone number validity

DricomDragon 5 years ago
parent
commit
fff230cb7f
1 changed files with 28 additions and 0 deletions
  1. 28 0
      phone_number.py

+ 28 - 0
phone_number.py

@@ -0,0 +1,28 @@
+from PyInquirer import prompt, Validator, ValidationError
+from prompt_toolkit import document
+import regex
+
+class PhoneValidator(Validator):
+	def validate(self, document: document.Document) -> None:
+		ok = regex.match('^\+?\d[\d ]+\d$', document.text)
+		if not ok:
+			raise ValidationError(message = 'Please enter a valid phone number', cursor_position = len(document.text))
+
+widget = [
+	{
+		'type':'input',
+		'name':'number',
+		'message':'Type your phone number',
+		'validate':PhoneValidator
+	}
+]
+
+try :
+	result = prompt(widget)
+except ValueError :
+	print('Pb !!!')
+	exit()
+
+print('Your answer is')
+print(result["number"])
+print(type(result["number"]))