()
| 4 | |
| 5 | |
| 6 | def Display_Menu(): |
| 7 | header = """ |
| 8 | __________________________ |
| 9 | | IP Locater | |
| 10 | | IP Finder | |
| 11 | |___________ ___________| |
| 12 | \ \ |
| 13 | ^_ _^ |
| 14 | (o o)\_________ |
| 15 | (_ _)\ )/\/ |
| 16 | U ||----W|| |
| 17 | || || |
| 18 | ### Tools: |
| 19 | [1] Locate an IP address |
| 20 | [2] Get the IP address of a domain |
| 21 | [3] Exit |
| 22 | |
| 23 | * Type <clear> to clear previous commands |
| 24 | * Type <q> or to abort operation of a tool |
| 25 | """ |
| 26 | print(header) |
| 27 | |
| 28 | def option_1(): |
| 29 | """ |
no outgoing calls
no test coverage detected