It is possible to add support for module like import to be used in conjunction with other Modules
for example
import dnscan
or
from dnscan import finder
So that it can be used like
results = finder.subdomainfinder("example.com") # return dict
The reason am asking for this is because I have intergrated this module here at
https://www.nmmapper.com/sys/tools/subdomainfinder/
But I just use the hard way not module like import.
Thank you.
It is possible to add support for module like import to be used in conjunction with other Modules
for example
import dnscanor
from dnscan import finderSo that it can be used like
results = finder.subdomainfinder("example.com") # return dictThe reason am asking for this is because I have intergrated this module here at
https://www.nmmapper.com/sys/tools/subdomainfinder/
But I just use the hard way not module like import.
Thank you.