Przeglądaj źródła

Change qmark ? to >>>

Jovian (Netbook) 6 lat temu
rodzic
commit
7b27b73890
2 zmienionych plików z 29 dodań i 14 usunięć
  1. 0 14
      main.py
  2. 29 0
      text_question_qmark.py

+ 0 - 14
main.py

@@ -1,14 +0,0 @@
-from PyInquirer import prompt
-
-widget = [
-	{
-		'type':'input',
-		'name':'myVar',
-		'message':'Your data please :'
-	}
-]
-
-result = prompt(widget)
-print('Your answer is')
-print(result["myVar"])
-

+ 29 - 0
text_question_qmark.py

@@ -0,0 +1,29 @@
+from PyInquirer import prompt, Validator, ValidationError
+from prompt_toolkit import document
+import regex
+
+class NickNameValidator(Validator):
+	def validate(self, document: document.Document) -> None:
+		ok = regex.match('^[A-Z][a-z]+$', document.text)
+		if not ok:
+			raise ValidationError(message = 'Please enter a correct name, with a uppercase and letters', cursor_position = len(document.text))
+
+widget = [
+	{
+		'type':'input',
+		'name':'nickname',
+		'message':'Choose a nickname :',
+		'qmark':'>>>',
+		'validate':NickNameValidator
+	}
+]
+
+try :
+	result = prompt(widget)
+except ValueError :
+	print('Pb !!!')
+	exit()
+
+print('Your answer is')
+print(result["nickname"])
+print(type(result["nickname"]))