port scanning with nmap in python code example
Example: how to make nmap port scanner in python
#Here I am Using API
import requests as r
host = input("Enter Your Host IP/Domain")
api = r.get(f"https://api.hackertarget.com/nmap/?q={host}")
out = api.text
print(out)