Metadata-Version: 2.1
Name: jamaddr
Version: 0.4
Summary: IP Subnet package
Home-page: https://github.com/talbiston/jamaddr.git
Author: Jamison Emilio & Todd Albiston
Author-email: foxtrot711@gmail.com
License: MIT
Description: # 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'
        
        #
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3 
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
