git ssb

2+

Zach! / onboarding-link-generator



Tree: 9d9d5dc6b4e2f64b14f338c2ea2e98e182854207

Files: 9d9d5dc6b4e2f64b14f338c2ea2e98e182854207 / steps / success.py

1445 bytesRaw
1from steps import clear_screen
2
3def 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
20if __name__ == "__main__":
21 main(details)
22

Built with git-ssb-web