git ssb

2+

Zach! / onboarding-link-generator



Tree: 9d9d5dc6b4e2f64b14f338c2ea2e98e182854207

Files: 9d9d5dc6b4e2f64b14f338c2ea2e98e182854207 / steps / channels.py

1567 bytesRaw
1from steps import clear_screen
2
3def main(details):
4 ascii_art = """
5
6 ██████╗██╗ ██╗ █████╗ ███╗ ██╗███╗ ██╗███████╗██╗ ███████╗
7██╔════╝██║ ██║██╔══██╗████╗ ██║████╗ ██║██╔════╝██║ ██╔════╝
8██║ ███████║███████║██╔██╗ ██║██╔██╗ ██║█████╗ ██║ ███████╗
9██║ ██╔══██║██╔══██║██║╚██╗██║██║╚██╗██║██╔══╝ ██║ ╚════██║
10╚██████╗██║ ██║██║ ██║██║ ╚████║██║ ╚████║███████╗███████╗███████║
11 ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═══╝╚══════╝╚══════╝╚══════╝
12 """
13 clear_screen.main()
14 print(ascii_art)
15 details['channel-one'] = input("What's a Channel they should check out? (Include the Hash-tag)\n> ")
16 details['channel-two'] = input("What's another channel you recommend?\n> ")
17 details['channel-three'] = input("And one last channel!\n> ")
18
19if __name__ == "__main__":
20 main(details)
21

Built with git-ssb-web