Metadata-Version: 2.1
Name: i-dunno
Version: 0.1.3
Summary: convert IPv6 or IPv4 addresses into RFC8771-compliant I-DUNNO representation
Home-page: https://github.com/lilyinstarlight/i-dunno
Author: Lily Foster
Author-email: lily@lily.flowers
License: MIT
Description: # I-DUNNO Implementation
        
        This library implements the Internationalized Deliberately Unreadable Network Notation (shortened as I-DUNNO) as defined in [RFC 8771](https://www.rfc-editor.org/rfc/rfc8771.html). The library supports encoding and decoding I-DUNNO representation, but the command line interface only supports encoding and does not implement decoding, as the RFC recommends the output of such a function SHOULD NOT be presented to humans.
        
        ## CLI Usage
        
            $ pip install i-dunno
            $ i-dunno 198.51.100.164
        
        
        ## API Usage
        
        ```python
        import ipaddress
        
        import i_dunno
        
        
        addr = ipaddress.ip_address('198.51.100.164')
        addr_i_dunno = i_dunno.encode(addr, level='satisfactory')
        addr_obj = i_dunno.decode(addr_i_dunno)
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: Freely Distributable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Artistic Software
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Localization
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
