SkoolOS/run.py
Raffu Khondaker 0081e55a9d first
2020-06-04 15:23:05 -04:00

13 lines
325 B
Python

from __future__ import print_function, unicode_literals
from PyInquirer import prompt, print_json
questions = [
{
'type': 'input',
'name': 'first_name',
'message': 'What\'s your first name',
}
]
answers = prompt(questions)
print_json(answers["name"]) # use the answers as input for your app