Metadata-Version: 2.1
Name: uvarint
Version: 0.1.1
Summary: Unsigned variable-length integers
Home-page: https://github.com/matheusmoreira/uvarint.py
Author: Matheus Afonso Martins Moreira
Author-email: matheus.a.m.moreira@gmail.com
License: UNKNOWN
Description: # uvarint
        
        Unsigned variable-length integers.
        
        # Usage
        
            import uvarint
        
            x = uvarint.encode(16384) # b'\x80\x80\x01'
            y = uvarint.decode(x)     # 16384
        
        # License
        
        This module is licensed under the MIT license.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
