Files: 21f225ecdd016ccd5d3740fb148ec0c485323ae6 / steps / sender.py
1543 bytesRaw
1 | from steps import clear_screen |
2 | |
3 | def main(details, imported_details): |
4 | ascii_art = """ |
5 | |
6 | ███████╗███████╗███╗ ██╗██████╗ ███████╗██████╗ |
7 | ██╔════╝██╔════╝████╗ ██║██╔══██╗██╔════╝██╔══██╗ |
8 | ███████╗█████╗ ██╔██╗ ██║██║ ██║█████╗ ██████╔╝ |
9 | ╚════██║██╔══╝ ██║╚██╗██║██║ ██║██╔══╝ ██╔══██╗ |
10 | ███████║███████╗██║ ╚████║██████╔╝███████╗██║ ██║ |
11 | ╚══════╝╚══════╝╚═╝ ╚═══╝╚═════╝ ╚══════╝╚═╝ ╚═╝ |
12 | |
13 | """ |
14 | clear_screen.main() |
15 | print(ascii_art) |
16 | if imported_details['sender']: |
17 | details['sender'] = imported_details['sender'] |
18 | print("~*~*~*~ This Email will be signed with '{}' as your name.\n".format(details['sender'])) |
19 | finish_this =input("Almost there. press any key to finish!") |
20 | else: |
21 | details['sender'] = input("One last thing: What's your name(or the name the invitee knows you by?)\n> ") |
22 | if __name__ == "__main__": |
23 | main(details, imported_details) |
24 |
Built with git-ssb-web