Files: 21f225ecdd016ccd5d3740fb148ec0c485323ae6 / steps / success.py
1445 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 | directory = details['recipient'].replace(" ","-").lower() |
15 | clear_screen.main() |
16 | print(ascii_art) |
17 | print("Invite Site made!\nYou'll find it within the directory invites, in the sub-directory '{}'".format(directory)) |
18 | print("\n"*2) |
19 | |
20 | if __name__ == "__main__": |
21 | main(details) |
22 |
Built with git-ssb-web