Binary protocol parser
Project description
Dumpy
Dumpy is a binary parser with a declarative syntax. All you need to do is telling the framework what your data look like, and let Dumpy do the rest.
Dumpy supports python versions >= 3.0.
Installing
Just use pip or tools alike:
pip install dumpy
Usage
To parse a pre-defined binary structure, you need to define a class for that structure. For example, a class for pascal strings :
import dumpy.types as dt
class PString(dict, metaclass=dt.DumpyMeta):
__field_specs__ = (
dt.field('len', dt.UInt8, default=dt.count_of('data')),
dt.field('data', dt.UInt8, count=dt.counted_by('len')),
)
s = PString()
s['data'] = b'\x01\x02\x03\x04'
# The length field is calculated automatically.
assert s['len'] == 4
assert s.pack() == b'\x04\x01\x02\x03\x04'
s2 = s.unpack(s.pack())
assert s2['len'] == 4
assert bytes(s2['data']) == b'\x01\x02\x03\x04'
See demo/png_packer.py for a real-world format parser.
Known Issues
The type checking and conversion code in Dumpy is kind of naive, It does not check element types in a sequence.
Dumpy is very slow at current stage. You may not want to use it to parse network messages or huge data structures.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dumpy-0.1.2.tar.gz
.
File metadata
- Download URL: dumpy-0.1.2.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 598f8dae01b1c49c457fd96941cee315f5dc734a78a86ce048511ecd3a2e89f5 |
|
MD5 | 93ac823baac64c08a477a63e84f2adde |
|
BLAKE2b-256 | 2afbb78893e906a0e67dd2cf7cfd46e04ad8946778ceb426bd3c9583ab34a162 |