Browse Source

Simple widget kept

Jovian (Netbook) 6 years ago
parent
commit
16b23aa679
1 changed files with 14 additions and 0 deletions
  1. 14 0
      text_question.py

+ 14 - 0
text_question.py

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