Metadata-Version: 2.1
Name: hexviewer
Version: 0.1.4
Summary: hexviewer
Home-page: https://github.com/dankernel/hexviewer
Author: dankernel
Author-email: dkdkernel@gmail.com
License: UNKNOWN
Description: 
        # hexviewer
        This utility prints a pretty `numpy.ndarray`.
        
        Useful for work with HEX (image processing, embedded programming, etc.).
        
        ![image](https://raw.githubusercontent.com/dankernel/hexviewer/canary/res/uint8_15_15.png)
        
        # Install
        
        ```
        # install via pypi
        $ pip3 install hexviewer
        
        # install via pypi (-m pip)
        $ python3 -m pip install hexviewer
        
        # manual installation
        $ git clone https://github.com/dankernel/hexviewer
        $ python3 setup.py install
        
        ```
        
        # How to use
        ```
        $ hexviewer data/data.npy
        ```
        
        The output is as follows:
        
        ![image](https://github.com/dankernel/hexviewer/raw/canary/res/uint16_300_30.png)
        
        # Supported file formats
        
        | format | support |
        |--------|---------|
        | INT8   | ✔️       |
        | UINT8  | ✔️       |
        | UINT16 | ✔️       |
        | INT16  | ✔️       |
        | UINT32 | ✖️       |
        | INT32  | ✖️       |
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
