So I found this tool: https://github.com/elceef/dnstwist and I want to pass a list of domains into that tool then take the output and visualize it. It operates through the command line, but how do I automate entering each domain and process the output automatically as well? By the way I am using colab, so I would need a solution using jupyter notebooks!
Thanks!
subprocessmodule to run a program from Python.importit and call its functions, instead of detouring via the shell.subprocess.Popen()allows you to read the output of the command.subprocess.run()or one of the legacy convenience functions likesubprocess.check_output()