Metadata-Version: 2.1
Name: netrange
Version: 0.0.10
Summary: Script to range multiple IPs and ports
Home-page: https://github.com/muhannadengineer/iprange
Author: Muhannad Alghamdi
Author-email: muhannadengineer@gmail.com
License: MIT
Keywords: ip address port range
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# NetRange

This is a library that can load IP addresses and ports from list or file and return a list of ranges.

## Installation

Run the following to install:

```bash
pip install netrange
```

## Usage

### From CLI

```bash
netrange ip --args 192.168.1.2 192.168.1.3 192.168.1.4
192.168.1.2-4
```

### From Modual

```python
import netrange


ips = netrange.load_ipaddrs(from_file=file)
ranged_ips netrange.dump(ips)
```


