Files: 89a367fda7adddc793a2ebab82ecd312a098aebe / steps / sender.py
1219 bytesRaw
1 | from steps import clear_screen |
2 | |
3 | def main(details): |
4 | ascii_art = """ |
5 | |
6 | ███████╗███████╗███╗ ██╗██████╗ ███████╗██████╗ |
7 | ██╔════╝██╔════╝████╗ ██║██╔══██╗██╔════╝██╔══██╗ |
8 | ███████╗█████╗ ██╔██╗ ██║██║ ██║█████╗ ██████╔╝ |
9 | ╚════██║██╔══╝ ██║╚██╗██║██║ ██║██╔══╝ ██╔══██╗ |
10 | ███████║███████╗██║ ╚████║██████╔╝███████╗██║ ██║ |
11 | ╚══════╝╚══════╝╚═╝ ╚═══╝╚═════╝ ╚══════╝╚═╝ ╚═╝ |
12 | |
13 | """ |
14 | clear_screen.main() |
15 | print(ascii_art) |
16 | details['sender'] = input("One last thing: What's your name(or what they know you by?)\n> ") |
17 | |
18 | if __name__ == "__main__": |
19 | main(details) |
20 |
Built with git-ssb-web