Metadata-Version: 2.1
Name: netrange
Version: 0.0.13
Summary: A simple package for reading and ranging IPs and ports.
Home-page: https://github.com/muhannadengineer/netrange
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.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# NetRange

A simple package for reading and ranging IPs and ports.

[![PyPI](https://img.shields.io/pypi/v/netrange)](https://pypi.org/project/netrange/)
![Travis (.org)](https://img.shields.io/travis/muhannadalghamdi/netrange)
![PyPI - Downloads](https://img.shields.io/pypi/dd/netrange)
![GitHub](https://img.shields.io/github/license/muhannadalghamdi/netrange)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/netrange)](https://pypi.org/project/netrange/)
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/netrange)](https://pypi.org/project/netrange/#files)

## Installation

Run the following to install:

```bash
pip install netrange
```

## Usage

### From CLI

```bash
$ netrange --help
usage: IP Range [-h] [--version] [--verbose] {ip,port} ...

A simple package for reading and ranging IPs and ports.

positional arguments:
  {ip,port}   choose one option

optional arguments:
  -h, --help  show this help message and exit
  --version   show program's version number and exit
  --verbose
```

### From Module

```python
import netrange


ips = ip.load(from_file=file)
ranged_ips = ip.dump(ips)
```


