You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
675 B

  1. import sys
  2. import time
  3. program_message = \
  4. '''
  5. Thanks for checking out out Gooey!
  6. This is a sample message to demonstrate Gooey's functionality.
  7. Here's are the arguments you supplied:
  8. {0}
  9. -------------------------------------
  10. Gooey is an ongoing project, so feel free to submit any bugs you find to the
  11. issue tracker on Github[1], or drop me a line at audionautic@gmail.com if ya want.
  12. [1](https://github.com/chriskiehl/Gooey)
  13. See ya!
  14. ^_^
  15. '''
  16. def display_message():
  17. message = program_message.format('\n-'.join(sys.argv[1:])).split('\n')
  18. delay = 1.8 / len(message)
  19. for line in message:
  20. print line
  21. time.sleep(delay)