Files: 89a367fda7adddc793a2ebab82ecd312a098aebe / steps / channels.py
1567 bytesRaw
1 | from steps import clear_screen |
2 | |
3 | def 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 | |
19 | if __name__ == "__main__": |
20 | main(details) |
21 |
Built with git-ssb-web