https://github.com/dankernel/hexviewer
hexviewer
https://github.com/dankernel/hexviewer
Last synced: 5 months ago
JSON representation
hexviewer
- Host: GitHub
- URL: https://github.com/dankernel/hexviewer
- Owner: dankernel
- Created: 2021-08-10T15:50:30.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-11T16:14:03.000Z (almost 5 years ago)
- Last Synced: 2025-09-12T12:34:06.749Z (9 months ago)
- Language: C
- Size: 407 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hexviewer
This utility prints a pretty `numpy.ndarray`.
Useful for work with HEX (image processing, embedded programming, etc.).

# 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:

# Supported file formats
| format | support |
|--------|---------|
| INT8 | ✔️ |
| UINT8 | ✔️ |
| UINT16 | ✔️ |
| INT16 | ✔️ |
| UINT32 | ✖️ |
| INT32 | ✖️ |