Wrapping non-continuous buffers in a late-resolving slice'able buffer-compatible object
Project description
memorywrapper
MemoryWrapper provides a slice-able front-end for a list of non-continuous memory backends, and only
joins the needed area into a bytes object as needed.
It uses the new __buffer__ protocol that is implementable in python starting with python 3.12.
Installing
pip install memorywrapper
Using
>>> from memorywrapper import MemoryWrapper
>>> import struct
>>> memory = MemoryWrapper([b"\x01\x02\x03", bytes([4,5,6])])
>>> part = memory[1:-1]
>>> (value,) = struct.unpack(">I", part)
>>> f"0x{value:08x}"
'0x02030405'
make_slices
make_slices provides a way to cut something like bytes, memoryview, or memorywrapper into equal-sized chunks.
>>> from memorywrapper import make_slices
>>> list(make_slices([1,2,3,4,5,6,7,8,9], 3))
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
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
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 memorywrapper-0.0.1.tar.gz.
File metadata
- Download URL: memorywrapper-0.0.1.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54299d3b0c104a76c467a91df55f164aa47329f6ec7a25101cd5c6b1fdfceb08
|
|
| MD5 |
a18a4981ca309bb42f7eee857059df9e
|
|
| BLAKE2b-256 |
3c6675a947f44cd04fcb37b898e6bc4e5e051fdd8b4fc16761a2f55723d772d4
|
File details
Details for the file memorywrapper-0.0.1-py3-none-any.whl.
File metadata
- Download URL: memorywrapper-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f45600d9f5758723ce9489335c42c35462dc6eb81079aa2c8c60fae3e62629c
|
|
| MD5 |
b4f0bacbd721ec5061b5f175abf2f245
|
|
| BLAKE2b-256 |
660f51d3ba4249e8fe0881bc5fcca656374c473455e51f44000eba875e9b6292
|