Metadata-Version: 1.1
Name: int
Version: 0.4.1
Summary: Integer conversion utility.
Home-page: https://github.com/dmulholland/int
Author: Darren Mulholland
Author-email: UNKNOWN
License: Public Domain
Description: 
        Integer Conversion Utility
        ==========================
        
        A tiny command line utility for converting integers between bases.
        
        `int` accepts an integer in its [b]inary, [o]ctal, [d]ecimal, or he[x] form,
        then prints it out in all four bases::
        
            $ int 64
        
            hex: 40
            dec: 64
            oct: 100
            bin: 01000000
        
        You can specify the base of the input using a single letter prefix. 
        (Defaults to [d]ecimal if omitted.) `int` also accepts multiple arguments::
        
            $ int b1001 o777 d256 x1EA
        
        See the module's Github homepage (https://github.com/dmulholland/int) 
        for further details.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: Public Domain
Classifier: Topic :: Utilities
