I have an installation script which would ask me some question.
or can I solve this problem without using pexpect?
In my django project
python manage.py syncdb
....
....
....
Would you like to create a default user (yes/no)?
What is the username?
What is the password?
....
....
I want to automate this process by typing yes , root and 12345.
Can I do it automatically?
Thanks