Просмотр исходного кода

New script without sql to test pyinquirer

Jovian (Netbook) 6 лет назад
Родитель
Сommit
983c648b55
1 измененных файлов с 19 добавлено и 0 удалено
  1. 19 0
      test_pyinquirer.py

+ 19 - 0
test_pyinquirer.py

@@ -0,0 +1,19 @@
+from PyInquirer import prompt, Separator
+
+# File designed to check if PyInquirer works correctly
+
+widget = [
+	{
+		'type':'list',
+		'name':'ok',
+		'message':'Does PyInquirer work',
+		'choices':['Yes','Indeed','I think so',
+		Separator('<Below more enthusiasm>'),
+		'It seems amazing !', 'Beautiful', 'Woa', ':-)']
+	}
+]
+
+result = prompt(widget)
+print('Your answer is')
+print(result["ok"])
+