How to enable the equivalent of -PN (or -P0) command line option for nmap when using the python-nmap?
>>> import nmap
>>> nm = nmap.PortScanner()
>>> nm.scan('127.0.0.1', '22-443')
>>> nm.command_line()
'nmap -oX - -p 22-443 -sV 127.0.0.1'
The goals is the have -PN (or -P0) in the above... how can I obtain this?