Skip to main content

No project description provided

Project description

# cHexdump
Python module for creating pretty 'hexdumps' of data sequences.

# Install
cHexdump should work on all Python 2.7's and Python 3's. To install, use pip
```
python -m pip install chexdump
```
The in Python do something like:
```
from chexdump import hexdump, sideBySideHexdump
```

# Functionality
For full explanations of functionallity use help() on the given function. Here are some quick and dirty descriptions:

## hexdump()
hexdump() allows you to dump a sequence in terms of hex with an optional ASCII printout on the right. For example:

```
>>> print hexdump([1,2,3,4,5]* 10)
0000 01 02 03 04 05 01 02 03 04 05 01 02 03 04 05 01 ................
0010 02 03 04 05 01 02 03 04 05 01 02 03 04 05 01 02 ................
0020 03 04 05 01 02 03 04 05 01 02 03 04 05 01 02 03 ................
0030 04 05

# or

>>> print hexdump([1,2,3,4,5]* 10, showAscii=False)
0000 01 02 03 04 05 01 02 03 04 05 01 02 03 04 05 01
0010 02 03 04 05 01 02 03 04 05 01 02 03 04 05 01 02
0020 03 04 05 01 02 03 04 05 01 02 03 04 05 01 02 03
0030 04 05

# or

>>> print hexdump([1,2,3,4,5]* 10, showAscii=False, showIndexLabel=False)
01 02 03 04 05 01 02 03 04 05 01 02 03 04 05 01
02 03 04 05 01 02 03 04 05 01 02 03 04 05 01 02
03 04 05 01 02 03 04 05 01 02 03 04 05 01 02 03
04 05

# and so on...
```

## sideBySideHexdump()
sideBySideHexdump() is used to print 2 hexdumps side-by-side and point out to the user lines that differ. For example:

```
>>> a = [10,20,30,40,50] * 10
>>> b = a[:]
>>> b[38] = 12
>>> print sideBySideHexdump(a, b)
0000 0A 14 1E 28 32 0A 14 1E ...(2... | 0A 14 1E 28 32 0A 14 1E ...(2... |
0008 28 32 0A 14 1E 28 32 0A (2...(2. | 28 32 0A 14 1E 28 32 0A (2...(2. |
0010 14 1E 28 32 0A 14 1E 28 ..(2...( | 14 1E 28 32 0A 14 1E 28 ..(2...( |
0018 32 0A 14 1E 28 32 0A 14 2...(2.. | 32 0A 14 1E 28 32 0A 14 2...(2.. |
0020 1E 28 32 0A 14 1E 28 32 .(2...(2 | 1E 28 32 0A 14 1E 0C 32 .(2....2 | !
0028 0A 14 1E 28 32 0A 14 1E ...(2... | 0A 14 1E 28 32 0A 14 1E ...(2... |
0030 28 32 (2 | 28 32 (2 |
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chexdump-0.1.zip (3.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page