Skip to main content

Python bindings for the dybuf dynamic buffer library.

Project description

dybuf python package

Python bindings for the dybuf dynamic buffer library implemented in C. The package exposes the DyBuf class implemented in Cython and ships binary wheels across the major desktop platforms.

Key features

  • Thin, fast wrapper around the original dybuf implementation.
  • Supports reading and writing unsigned integers (8–64 bits), booleans, and raw byte payloads.
  • Compatible with Windows, Linux, and macOS thanks to compiled extension modules.
  • Designed for publishing on PyPI with automated release workflows.

Installation

Once released to PyPI the package can be installed with:

pip install dybuf

Quick start

from dybuf import DyBuf

buf = DyBuf(capacity=64)
buf.append_uint16(0x1234)
buf.append_uint32(0xDEADBEEF)
buf.append_bool(True)

buf.flip()  # prepare for reading
print(hex(buf.next_uint16()))  # 0x1234
print(hex(buf.next_uint32()))  # 0xdeadbeef
print(buf.next_bool())         # True

write() and read() let you work directly with arbitrary byte payloads, while position, limit, and capacity expose the cursor-style API provided by the original library.

Developing locally

Create a virtual environment and install the build requirements:

python -m venv .venv
source .venv/bin/activate
pip install -r requirements-dev.txt  # optional, see below

Build the extension in editable mode for local testing:

pip install -e .
pytest

The project is configured to build wheels via python -m build, producing both source and binary distributions:

python -m build

Generate the Sphinx documentation locally with:

pip install -r requirements-dev.txt  # ensures sphinx/docutils are present
sphinx-build -b html docs docs/_build/html
open docs/_build/html/index.html  # or use your preferred viewer

Automated releases

A GitHub Actions workflow under .github/workflows/pypi-release.yml drives cibuildwheel to produce Windows, Linux, and macOS artifacts and publish them to PyPI. Provide a PYPI_API_TOKEN secret in your repository and tag releases with a semantic version (e.g. v0.1.0) to trigger the pipeline.

Licensing

The wrapper is distributed under the GNU GPL v2, matching the original dybuf project.

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

dybuf-0.1.0.tar.gz (181.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dybuf-0.1.0-pp310-pypy310_pp73-win_amd64.whl (258.8 kB view details)

Uploaded PyPyWindows x86-64

dybuf-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dybuf-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (277.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

dybuf-0.1.0-pp39-pypy39_pp73-win_amd64.whl (258.7 kB view details)

Uploaded PyPyWindows x86-64

dybuf-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dybuf-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (276.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

dybuf-0.1.0-pp38-pypy38_pp73-win_amd64.whl (258.8 kB view details)

Uploaded PyPyWindows x86-64

dybuf-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dybuf-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (280.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

dybuf-0.1.0-cp312-cp312-win_amd64.whl (262.6 kB view details)

Uploaded CPython 3.12Windows x86-64

dybuf-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (778.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

dybuf-0.1.0-cp312-cp312-musllinux_1_1_i686.whl (738.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

dybuf-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (783.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dybuf-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (756.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

dybuf-0.1.0-cp312-cp312-macosx_10_9_universal2.whl (376.9 kB view details)

Uploaded CPython 3.12macOS 10.9+ universal2 (ARM64, x86-64)

dybuf-0.1.0-cp311-cp311-win_amd64.whl (261.5 kB view details)

Uploaded CPython 3.11Windows x86-64

dybuf-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (772.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

dybuf-0.1.0-cp311-cp311-musllinux_1_1_i686.whl (737.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

dybuf-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (791.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dybuf-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (762.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

dybuf-0.1.0-cp311-cp311-macosx_10_9_universal2.whl (378.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

dybuf-0.1.0-cp310-cp310-win_amd64.whl (261.5 kB view details)

Uploaded CPython 3.10Windows x86-64

dybuf-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (743.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

dybuf-0.1.0-cp310-cp310-musllinux_1_1_i686.whl (713.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

dybuf-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dybuf-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (735.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

dybuf-0.1.0-cp310-cp310-macosx_10_9_universal2.whl (376.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

dybuf-0.1.0-cp39-cp39-win_amd64.whl (261.7 kB view details)

Uploaded CPython 3.9Windows x86-64

dybuf-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (741.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

dybuf-0.1.0-cp39-cp39-musllinux_1_1_i686.whl (712.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

dybuf-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (754.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dybuf-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (733.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

dybuf-0.1.0-cp39-cp39-macosx_10_9_universal2.whl (377.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

dybuf-0.1.0-cp38-cp38-win_amd64.whl (262.5 kB view details)

Uploaded CPython 3.8Windows x86-64

dybuf-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (773.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

dybuf-0.1.0-cp38-cp38-musllinux_1_1_i686.whl (743.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

dybuf-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dybuf-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (751.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

dybuf-0.1.0-cp38-cp38-macosx_10_9_universal2.whl (381.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file dybuf-0.1.0.tar.gz.

File metadata

  • Download URL: dybuf-0.1.0.tar.gz
  • Upload date:
  • Size: 181.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b519cb908bc110c2e2ad53beee52a0bef4e97bd3f604f82191c5ec481507cc27
MD5 8902aad14227f6d1ea1f546c8982af7d
BLAKE2b-256 9d7c524dcc3720a80a693669d1ace62fcea48aa041e9c79cbfa2c2e85879a51a

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 45b337a1a4f3144b34940211a32554076a88af60db2fcb943b32a1e0cf92e0d1
MD5 241d9028ff013e1904ef94b874e5347c
BLAKE2b-256 ae72c6824dd7081273a00b2222d98d89db0898f45a1ea5247cfb7045214d9e13

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 478bce0fc07294f3f91baf4f96d44ad29c7e13d6eed122218428bfcd3c56a2b7
MD5 386a362fa58415cfe476612a4e8f8938
BLAKE2b-256 0be2e71eecad45e7f376153fd46f9dcee339dc3a28d9dd81ab6d90d1ec2a7056

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f09bdfd91f8e32a96a7b7a79c7f2471b2ac947c29c82c284c7052af072e52e71
MD5 140fba5ac29c865fc0688f1e7941e10e
BLAKE2b-256 9c0a43ad82d955f9e228670ff21593f1e878bfe1c354d010c57b5a81e65ae8c4

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b53c0466969248313a50480728666a5c9268c248b71a78464e7920bab2babc03
MD5 0a65ebec86386e032252da549666e1ee
BLAKE2b-256 839862c4cd82be38189f340ceb84f38b68b15efa89cb7176e17aa6ac11e0094c

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f16055c0b361d3438013860cfb954f323d9d32c829c71689f7eb44fe5ea7e03b
MD5 112dabb1fbc8b650a893985027f63d05
BLAKE2b-256 ddd39d93c11999fdce4a51e0e1be3034efc026c1b83d4ee3478725ce91d0e4dc

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccfd1df52aa6196e9c061e4549bb556eed313383c3f446d05bb8fb4d4efe232a
MD5 eb18029d26173e0a4ccbc993a2c34893
BLAKE2b-256 8b6244150292e01891aa6e840fa54a21df2f12ce1bad00bf03a5a5ec3ad18db9

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a335bf8c2bce54d0c0584a179f59c42aa4434a58085344b94849deeb429f546f
MD5 d07ca0cbb7c5ab9de08e349c911b68c0
BLAKE2b-256 ca4d84f93d1119e39d7383c153b94d58edfb3abb46e37b251fe39821c638abd4

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cefcd13e459a2b4566163b1026cfece58e5a8b199985f2e06afc863eab74c477
MD5 6e36e32902567ad14ac68e3d4025823d
BLAKE2b-256 9f84f1b5601eee85545ea19607ce79f4bb651009699eb9dc1c018526418fafdc

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b215d5c34c7bc318cec8106624bfbfce322dc64e86fdfa61eb9aed8cf87ac6f
MD5 614542a58a7319f92de7081919998d84
BLAKE2b-256 b0948dff4efb690e44616ae7d754fb28b7eca2fcaecaa7727da27deeb8bf7d6e

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 262.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef651a412ea137e9ee17477db4b447a9022ae6e6e1f544156f76be83f48fbd2f
MD5 77b4a52fbd093ab75190986466eabb7b
BLAKE2b-256 e939a8f907b774a68aa8a9861f8e5a0e5b29937940ab79fa7db9c1443f1d0248

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8da35153c3af9ca84e6c075f246a416279141c76a28f313e140eeda6fdc3da4
MD5 973b70c9ccfdd20b4b3973cb87d3a57f
BLAKE2b-256 c9c57ca446d871adaf87159d4666237ad2bcb84032b35412c3e45af86961bc58

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 10b690ecfc5871500e792168e9c0800cbf9588ebe9d4da3dfa8d2e26e4d37b8f
MD5 39e0eb3ca81e8b44384497aba2cd473e
BLAKE2b-256 d328280bb335585baa06f09674123f13393546efd14d8a5ba462696892f4fd2d

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 707be71b574510073ceb2a48230ea3e62487fb5ce49fd85164552b9e0df3f4ff
MD5 63dccb1698f23fa8b13acca8cb543027
BLAKE2b-256 9f723a90cb41a91d3fceddce73b6c121387f2b9eb8a29e415b490dd67fd680af

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e4332417a23d931410aad0c7900eab1074957b2cd5d63901a1c540acaa2d17d
MD5 acd752c572824c8a67c752afd0dd0e0a
BLAKE2b-256 b7cfe6ffda17fa08520fc04c8ec8981c4541e242e01703530289d2dea535b474

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6aec68a5c6156aadd5d93179026bc418d4d4ba8c1d1a89f9c493748e7e662bcf
MD5 9f57bf9543225c0ce41e576a120448e7
BLAKE2b-256 963e9ba1b630342ff3140e5c45155c51800224dfae49b54a07187386b6f5c759

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 261.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c3bf4a0186cbe4e0e8db3802a1e1cd7ec7c1762630ff4de6e4a07a8d76750967
MD5 1a3a6dc64f44ad463860b3844e0e6848
BLAKE2b-256 d25bb8f2972d1ffd99184bcb695d7b58e674450a5dab1df86666c11d2ec67615

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f638fd3bfc06c7cc2ebeb2cb92126dc2d441c8d3619f96d895d606f7dbff161b
MD5 8e1fda8199b25dcf6c668844829c01f6
BLAKE2b-256 b90d8b71e6a13d664d496aeaac55fc349f9a40d76d77c0a328a9d30846636bf7

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 13eb19fbea02f4c3fbdf128fff8c9a69deda1d0daeb82c98f6fca7acf004e0ae
MD5 62874bd5fc7c8e7f118705192f4479d7
BLAKE2b-256 fdbdfa377e780cb86bd68e10488cf9f1986230c11298302c21e33d798a6f254d

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53a84ab0561f7230565a57a944b74390c118adbb0c079ddd7ee4fbed634b1f72
MD5 55386258a9fcef9f75cd52ce2c72999a
BLAKE2b-256 ca42ba70a0b06bed3eff362fc5d83c5846d770828033f15b6de605a18e1e83b0

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaad04b9748401986e1a6f5ec0a37c4c45efde8d19537eb3fc2540adff9b8cab
MD5 ccd1bc78e3df0e981907691d08611846
BLAKE2b-256 781478525264e934f7693194712b586102f49f28ce86617697e38063bec80daa

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5d895fc6e619910baf4dc338f0e035125ab02d288b04cca97ba8ef2dcadfc1ea
MD5 38a9e40738ee348ae8f5a6cecbade2df
BLAKE2b-256 397511e432b9bbbd31b3739dfa7d6b5c211b5426459e9dc82cc5b7314c29f9a7

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 261.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6684f2a85d5a8dca6c17823a1ec24595bfa29e3d67df30feda761f8602a572c6
MD5 0b0c8f9c6815557ff3e82964818d7cbb
BLAKE2b-256 852cdb48a95ad51b7afece964cbf261a16cad7c521772461210b31dec8b4a946

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2308201003f4885665aa666d6d21d206b662071ff4dd8b6b9a42510bb896ba5b
MD5 9f0e72f0f1800d78fac1db95cd8283d2
BLAKE2b-256 514aaa70845a64270e5ca607e5e3f4401a9b5eeb4347adc151aad56e7fae386a

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cf0fb33fde052fb419ba59ad23a8545c1e028572b1d94e1e0c512c704e606e37
MD5 f5d352d1878923ffa2534e1fbcd89674
BLAKE2b-256 7c8b00492afe5759d7584108affc085931a21b3b132cd9219882cd847a250e01

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73b9995f67301738edc509ee4f1d55a77da9705178f06328bc09448bc0e6e24d
MD5 5513cb3a49a5c4d9064ac8e1a1c4c8c4
BLAKE2b-256 cc5e60eb9ec52d4827e87424eedc24a342f5e353a7d2118183bf4299600afa60

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7c225946e298626a960bb9d9ae347884b9af7e7ff933610f2b41d6093379c55
MD5 ba005cd39999400bc187df0a72e59b5a
BLAKE2b-256 e58ff2c5a98841356b2b7c7af69a5dd63df17971ce8ff21c1388a64def7775fb

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f069304812b8d63b25c0eca11791720548a6568ac97a38a388ce0232e8760e43
MD5 26026b9f1d76882344d1d5fc7d24ac92
BLAKE2b-256 0549b3524a76c25c5c1513805472f00168adda7e62deed1020ac5552b3dd252d

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 261.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 18927e1ef060a6055916bb0466c658d6846f3ff3e59d8d8e7a0bf047c2d3e328
MD5 21dc42879c63f2b243004c7c88d66f64
BLAKE2b-256 467e2f2f37ad3deb4c557c7532d4d96995a0433eed3d1184ecbea7e26e56e55b

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc3216c6858646f785910f55fcb5c18177cafc8a76cd065d7fe6fa763b9c327b
MD5 2a42dcf9d02012f4f65373c120eabeed
BLAKE2b-256 601239f1133791965243f49bf93e75ef64a9bed24de1d34cc3644facbbccbcd8

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 712.2 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8260072476e4a82011ce0a97b94e9f5755f733c479aea3b7bdc103ba6659221d
MD5 4206e9ca0493c26ff71f88040a44ea42
BLAKE2b-256 9ca5d4ec4e3373109b9da3606da64f2893241be820a973ff7c465cc7f670f165

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7015e145ea5d4428643ff3ecc5edc0e577d7b71cf7d8c09f06dc51527ec356b2
MD5 8453cdf30fb370d3c2a1b184e88ec685
BLAKE2b-256 0ac3b9b44e0597b88c30b8caa84297859e46b57595551a023ba2694912682317

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2470edea020d9d02b2b59b54ce1c80bc1f5b0e4a4b06699996b08d53f14140e7
MD5 f39769fb29dd6c53d5b16030e6f0fe89
BLAKE2b-256 d58d73c602b1ee2b3acbc4a577b0c840e729fd792e47b35ec2e932234ccd7964

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 377.6 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 989a0c9d1dddb9f1acafba0c22d96afbc8a9a20d6cbfbab13e7442e8ff87c3e8
MD5 e9df0bb0257adc7ab5b36a76eae5053d
BLAKE2b-256 59be6c0549f8b974094a370a04bdf73c440fe5ef34e419e18023009154cdcc6f

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 262.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ff6448bc1881c01cce35b103b46f463ac5c7e41bcb2c4aeb843d212e2a2b7888
MD5 f66d2afc49d96f899649070a22549f57
BLAKE2b-256 3470e126c616fd35784634555f902d3396d13789db08349bd498bb4a7d49230c

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 50d371108f091f37594926b29f0e3d2b0064f8f15742760b131dce1d384d1b1a
MD5 69ea008ae0eaffa64af67ca221622ced
BLAKE2b-256 db169ce9fc2e451953efd909c97715cfe1e239d6264c754f0f9bd26d0542d6a5

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 743.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6180bfb3d2184130aba667365cb9327eb4b340166960204087c45c084b89c9db
MD5 52193a5321a663fa6e0624fa8d1ddeb3
BLAKE2b-256 ba51fc8469d1abb429545ae43167a9e9d303cab96f06e2ab00efd7583c998580

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a812f2655bca4d7c29a739f5972b143911c734db57c890d7f65a66eaff820baf
MD5 610865df7c266f23e3a16d9ac1f5863c
BLAKE2b-256 627cdd1fa5a151dde0f7c9ab8e28804bc8b4ed9cb3e46d611a2be64dc0e302ad

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dybuf-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4000c28ead8e4de0c2258145261ebf3f0d231c432bcafdc1380814db7ce5c6c3
MD5 e65c30f4b6f7262d933d2cfd60f87748
BLAKE2b-256 1a91c0cf60da17de5dcdbacd6b91472ffe536495f972d2382007d30b6cd8c0b3

See more details on using hashes here.

File details

Details for the file dybuf-0.1.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: dybuf-0.1.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 381.7 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dybuf-0.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fa8a9789283f4f44175edc57122b05d446522314361cbec5424cf6b38cd40f20
MD5 d945fb451c1562f7293d1ec4b6ee5bd7
BLAKE2b-256 9a1331a04e2b0c2920aaed8131ddd668feb2f14764f4d8776f0de41d642242c3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page