Metadata-Version: 2.1
Name: asn-nmap
Version: 0.1.6
Summary: Get status service from a ASN.
Home-page: https://github.com/brERS/asn_nmap
Author: Edgar Reis
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: Pygments (==2.13.0)
Requires-Dist: certifi (==2022.12.7)
Requires-Dist: charset-normalizer (==2.1.1)
Requires-Dist: commonmark (==0.9.1)
Requires-Dist: et-xmlfile (==1.1.0)
Requires-Dist: idna (==3.4)
Requires-Dist: numpy (==1.23.5)
Requires-Dist: openpyxl (==3.0.10)
Requires-Dist: pandas (==1.5.2)
Requires-Dist: python-dateutil (==2.8.2)
Requires-Dist: pytz (==2022.6)
Requires-Dist: requests (==2.28.1)
Requires-Dist: rich (==12.6.0)
Requires-Dist: six (==1.16.0)
Requires-Dist: types-requests (==2.28.11.5)
Requires-Dist: types-urllib3 (==1.26.25.4)
Requires-Dist: urllib3 (==1.26.13)

# asn_nmap

Library created with the aim of facilitating the obtaining of ips service status by asn

Description. 
- The package asn_nmap is used to:
	
	- Asn:
		- get_ips
	- Nmap: 
		- main 


## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install package_name

```bash
apt-get install nmap -y
pip install asn-nmap
```

## Usage 

#### Get information from a asn
```python
from asn_nmap.asn import Asn
from asn_nmap.nmap import Nmap

asn = '15169'
port_scan = [80, 443]

asn_response = Asn(asn)

Nmap(asn, asn_response.get_ips(), port_scan).main()
```

#### an output.xlsx file will be automatically generated

## Author
Edgar Reis

## License
[MIT](https://choosealicense.com/licenses/mit/)


