Skip to content

Instantly share code, notes, and snippets.

@Fizzadar
Created July 18, 2016 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fizzadar/a2587edcd9da696edacf3d5bafd232ff to your computer and use it in GitHub Desktop.
Save Fizzadar/a2587edcd9da696edacf3d5bafd232ff to your computer and use it in GitHub Desktop.
from time import sleep
from colorama import Cursor
print()
def print_line(line):
print(Cursor.UP() + line + ' ')
print('input [host.edtd.net] -->')
print_line('hi')
sleep(1)
print_line('hello')
sleep(1)
print_line('noop')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment