mirror of
https://github.com/Rushilwiz/SkoolOS.git
synced 2025-04-16 02:10:19 -04:00
13 lines
325 B
Python
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 |