Metadata-Version: 2.1
Name: jamaddr27
Version: 0.3
Summary: IP Subnet package
Home-page: https://github.com/talbiston/jamaddr27.git
Author: Jamison Emilio & Todd Albiston
Author-email: foxtrot711@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2 
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Jamaddr Python Package

This package Created by Jamison Emilio and packaged by Todd Albiston

## Description:
Python Package adds functions to convert IP address or subnet masks to bits and bit back up IP address.


```python
from jamaddr import JamAddr
ipbits = JamAddr.ip_to_bits("192.168.0.23")
ipbits
```

returns = '11000000101010000000000000010111'

```python
from jamaddr import JamAddr
bitsip = JamAddr.bits_to_ip("11000000101010000000000000010111")
bitsip
```

returns = '192.168.0.23'

#

