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.8.zip (7.6 kB view details)

Uploaded Source

File details

Details for the file chexdump-0.8.zip.

File metadata

  • Download URL: chexdump-0.8.zip
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for chexdump-0.8.zip
Algorithm Hash digest
SHA256 a3ddde474b1375a624750e0540cb4b825f88c6987dbcb3ee2df1a24248cf5490
MD5 1db3b63d8913d8f57215fe30af0dd9c5
BLAKE2b-256 50d5d95285ca1efca257f96240ae4ff0e4955c6d6ae5a977ebc7df338968ea0d

See more details on using hashes here.

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