(self)
| 108 | |
| 109 | ###########OPTION[0]############ |
| 110 | def anonsurf(self): |
| 111 | self.clear_scr() |
| 112 | os.system("figlet -f standard -c Anonmously Hiding Tool | lolcat") |
| 113 | |
| 114 | print(""" |
| 115 | [1] Anonmously Surf |
| 116 | [2] Multitor |
| 117 | [99] Back |
| 118 | """) |
| 119 | |
| 120 | functions_anonsurf = { |
| 121 | '1':self.ansurf, |
| 122 | '2':self.multitor, |
| 123 | '99':self.menu |
| 124 | } |
| 125 | |
| 126 | choice = input("Z4nzu =>> ") |
| 127 | self.check_input(choice, self.anonsurf, functions_anonsurf.keys()) |
| 128 | |
| 129 | functions_anonsurf[choice]() |
| 130 | |
| 131 | def ansurf(self): |
| 132 | self.clear_scr() |
no test coverage detected