A modern library that simplifies packing and unpacking to a whole other level.
Project description
packer.typed
A modern library that simplifies packing and unpacking to a whole other level.
Usage
Basic Usage
from dataclasses import dataclass
from packer import *
@packable
@dataclass
class SimpleStruct:
int32_member: Pack[int32]
int8_member: Pack[int8]
float_member: OptionalPack[float]
s = SimpleStruct(3, 2, None)
s.pack() # bytearray(b'\x03\x00\x00\x00\x02')
s.unpack(bytearray(b'\x01\x00\x00\x00\x04'))
# s.int32_member == 1
# s.int8_member == 4
# s.float_member == None
Custom types
from enum import IntEnum
from dataclasses import dataclass
from packer import *
from packer.protocols import TypeDescriptor
class FileTypes(IntEnum):
UNK = 0
TXT = 1
BIN = 2
class _FileType(TypeDescriptor):
_size: int = 1
@classmethod
def pack(cls, val: FileTypes) -> FileTypes:
return val.to_bytes(1, "little")
@classmethod
def unpack(cls, data: bytes) -> FileTypes:
return FileTypes(int.from_bytes(data[:cls._size], "little"))
FileType = _FileType | FileTypes # to get the typehint of FileTypes back
@packable
@dataclass
class File:
file_type: Pack[FileType]
file_data: Pack[AllData]
file = File(FileTypes.BIN, bytearray([3]*5))
file.pack() # bytearray(b'\x02\x03\x03\x03\x03\x03')
file.unpack(bytearray(b'\x01\x03\x03\x03\x03\x03hi!'))
# file.file_type == FileTypes.TXT
# file.data == b"\x03\x03\x03\x03\x03hi!"
Packing a packable
Nested packable attributes must have default values to ensure proper instantiation
@packable
@dataclass
class Header:
data_type: Pack[int8] = None
data_size: Pack[int32] = None
@packable
@dataclass
class Packet:
header: Pack[Header]
data: Pack[AllData]
packet = Packet(Header(1, 5), b"hello")
packet.pack() # bytearray(b"\x01\x05\x00\x00\x00hello")
packet.unpack(bytearray(b"\x04\x02\x00\x00\x00hi"))
# packet.header.data_type == 4
# packet.header.data_size == 2
# packet.data == hi
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
packer_typed-0.2.3.tar.gz
(8.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file packer_typed-0.2.3.tar.gz.
File metadata
- Download URL: packer_typed-0.2.3.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ed7fb491026021a484a99e424b0ead809a861ebd00857c2b4bbcd2848c9e547
|
|
| MD5 |
c29ac1fd5035a18f1ce0adefdce63206
|
|
| BLAKE2b-256 |
f46f1c7672a8cf8414ae0b2757bfe752d41c6cd4b40ec3ee9ec533f5765808e9
|
File details
Details for the file packer.typed-0.2.3-py3-none-any.whl.
File metadata
- Download URL: packer.typed-0.2.3-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e62508a5cc4d0457acba29fc98355c47827ca0a8667a26e9c5bd769abcdba88a
|
|
| MD5 |
9f4bcf8c4bd6bf877200787c6258400e
|
|
| BLAKE2b-256 |
59414ef168df2a0015d3d61d7c626a4fd11d106e1adf3edd5f35e60b63d8f2a0
|