Metadata-Version: 2.1
Name: izihawa-types
Version: 0.1.1
Summary: UNKNOWN
Home-page: https://github.com/izihawa/types
Author: Pasha Podolsky
License: MIT
Description: # Izihawa Types
        
        Pure Python varint encoding and type routines
        
        ## Example
        
        ```python
        from izihawa_types import varint, process_varint
        
        
        x = varint(123123)
        
        assert(x == b'\xf3\xc1\x07')
        assert(123123 == process_varint(x))
        ```
Platform: UNKNOWN
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
