Main function / entry point
(argv=None)
| 248 | |
| 249 | |
| 250 | def main(argv=None): |
| 251 | """ Main function / entry point """ |
| 252 | from shodan import Shodan |
| 253 | from shodan.cli.helpers import get_api_key |
| 254 | |
| 255 | api = Shodan(get_api_key()) |
| 256 | return launch_map(api) |
| 257 | |
| 258 | |
| 259 | if __name__ == '__main__': |
no test coverage detected