浏览代码

New script without sql to test pyinquirer

Jovian (Netbook) 6 年之前
父节点
当前提交
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"])
+