Skip to main content

Parse struct definitions like those used in the struct module

Project description

struct_parse

struct_parse builds on the struct module in the standard library. struct lets you parse buffers by describing the format similarly to C struct definitions. struct_parse aims to comply with the struct module's format strings, but instead returns a (very flat) abstract syntax tree (AST).

Example

import struct_parse

field_list = struct_parse.parse('hhl')
print(field_list.fields)

This will print

[<FieldType.FLOAT: 16>, <FieldType.FLOAT: 16>, <FieldType.LONG: 9>]

Use cases

For simply unpack packed data, the struct module does the trick. The goal of this module is to enable the user to do other stuff with the format string-- we return a sequence of types instead of a sequence of values.

Compatibility

This library supports only Python 3.

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

struct_parse-0.0.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distributions

struct_parse-0.0.1-py3.7.egg (4.4 kB view hashes)

Uploaded Source

struct_parse-0.0.1-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

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