Python library written in Rust for working with the Databento Binary Encoding (DBZ) format
Project description
dbz-python
Python bindings for the dbz-lib
Rust library.
Used by the Databento Python client library.
Using this crate is for advanced users and is not fully documented or supported.
Installation
To install the latest stable version from PyPI:
pip install -U dbz-python
Usage
To read the metadata from a DBZ file into a dict
, read the raw bytes and pass them to decode_metadata
.
from dbz_python import decode_metadata
with open("my.dbz", "rb") as fin:
metadata = decode_metadata(fin.read())
# Print symbology mappings
print(metadata["mappings"])
You can write DBZ files using write_dbz_file
:
from dbz_python import write_dbz_file
records = [
{"rtype": 160, "publisher_id": 1, "product_id": 1, "ts_event": 647784973705, "order_id": 1,
"price": 3723000000000, "size": 1, "flags": -128, "channel_id": 0, "action": ord('C'),
"side": ord('A'), "ts_recv": 1609160400000704060, "ts_in_delta": 0, "sequence": 1170352}
]
with open("my.dbz", "wb") as out:
write_dbz_file(file=out, schema="mbo", dataset="custom", records=records, stype="product_id")
Note that the keys in the dictionaries in records
must match the field names of the schema, or
the function will raise a KeyError
.
Building
dbz-python
is written in Rust, so you'll need to have Rust installed
as well as Maturin.
To build, run the following commands:
git clone https://github.com/databento/dbz
cd dbz
maturin build
To build the Python package and install it for the active Python interpreter in your PATH
, run:
maturin develop
This will install a package named dbz_python
in your current Python environment.
License
Distributed under the Apache 2.0 License.
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 Distributions
Built Distributions
File details
Details for the file dbz_python-0.2.1-cp311-none-win_amd64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp311-none-win_amd64.whl
- Upload date:
- Size: 358.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08aa16c9b4a95600cc66ceb92d30229b79fa30b0cc8c56d2a55ce7e9ad0deaf9 |
|
MD5 | 7bfa1d9db579e0c9134a9c0398aec2f8 |
|
BLAKE2b-256 | eb3b10d51bb460c862efbfa426c5a77b41ef882da7a97868fa66fc1aa01a011b |
File details
Details for the file dbz_python-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 822b97b8a8366b926c341c72297961dd56e07b48111616ac3753fb2f14b128e7 |
|
MD5 | 231f6bc9a6501c8156ca12c19d838712 |
|
BLAKE2b-256 | 4b134022cafb6407a42bde3c73bc0a3cf9b0e6ac33db3fec44a0de341748778e |
File details
Details for the file dbz_python-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab4ae7bee5f941610852cd487a5d0ea993b9b7ab12c9baee32e803675070ab52 |
|
MD5 | d4d91e6e19aad8d25e93e10c318affb2 |
|
BLAKE2b-256 | aec37b2579d5c3859c7dd801c2876fe4b585443974a5d5e5327069521ba0f6bd |
File details
Details for the file dbz_python-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd2415b41f1db6019e153a4bacb6be7f2307f9e43abcd2fdc3cb5651a75c9b34 |
|
MD5 | 663a0bfb58979fbdf215301a077c70f7 |
|
BLAKE2b-256 | efe176f33bf25f1ebca00a4252d1404e1ee5a280fb6427f03beeb516c9e101fb |
File details
Details for the file dbz_python-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 981d89788cd6575ebbb4a0d9c58de342e72f01aef88c23e600a92f3e80d70904 |
|
MD5 | 2f6238a86788bbb3992f0a53407f4a9f |
|
BLAKE2b-256 | 5ba636855a0bc551e77efed4224c1ee301fc694fbc57d72a930dffe6489a03e0 |
File details
Details for the file dbz_python-0.2.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b595f805a44201fe52875648b575167eabe957db8346959388175c4972eaa22 |
|
MD5 | 6ba0cbef9bcdcb0bb13f53076d8b4b32 |
|
BLAKE2b-256 | 539decff4fdc20cc016536dec435b43628789de73d82060b9fc181756928a2f8 |
File details
Details for the file dbz_python-0.2.1-cp311-cp311-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp311-cp311-macosx_10_7_x86_64.whl
- Upload date:
- Size: 770.3 kB
- Tags: CPython 3.11, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cc7213a9211305c703d08b1741c7a4461fd454534f82d5ec91201b3b8176519 |
|
MD5 | ced5ed9d310880d3159f9bd837be55f2 |
|
BLAKE2b-256 | bc8621f904e11298251f79598272a9eefc53bda41a5a7952ad48c134ed3415b1 |
File details
Details for the file dbz_python-0.2.1-cp310-none-win_amd64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp310-none-win_amd64.whl
- Upload date:
- Size: 357.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34c16c0432559ad392480de1151b37523d1d38bc274a4b8ae269cbba113bff66 |
|
MD5 | ae84559e1f9f975b67cb0fcf7c82efbf |
|
BLAKE2b-256 | faf492761ec602aefcc6b248e1109d37606a18c0478e2b6c141bbfc161daa4a9 |
File details
Details for the file dbz_python-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 053a41114cfd4d84e1ff30907827265b021a546701be71eeb1880a3762b5e079 |
|
MD5 | 1da70fd5ff5ee7a746adfa86c1e9b6a7 |
|
BLAKE2b-256 | 13657f9a85db9dcd39ec22ec3ea19a39c8065347942c9033a126be200677fab8 |
File details
Details for the file dbz_python-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d58e4f3183229edd41c6ae355df4a9d5bcac5b21ef2c8a5b9fc3bb6c41e1152 |
|
MD5 | d6e072e4544b79aed9dc92632b8e33ec |
|
BLAKE2b-256 | 06c2877d57bacd26e93f905429c6a5e2e20fb37a163e62f53c29c3885461cd12 |
File details
Details for the file dbz_python-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d8501e67219ecdaeb134703d7b2ea61dc6c5577d77fd4b56542117bc3f45ac9 |
|
MD5 | a68455f1007d53ebb1d77755bf7c9c5f |
|
BLAKE2b-256 | a7a09908ac708c138f6244e884d0d852de7489d3106b4ed4241b52d196a21a8d |
File details
Details for the file dbz_python-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90f92736a415386f014f245cd68112b827096106e636d61752687a4af60796ed |
|
MD5 | b648cc483469b09d691a8f862a49aa40 |
|
BLAKE2b-256 | 3b62f37de03e321eb99e6daa8c7c3ec3ca91a7000b2e73225bfc7233b3f6176e |
File details
Details for the file dbz_python-0.2.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8e38502ec9442e794f293d74e284a6c86f988ba10309e4a436a32d75fce576f |
|
MD5 | 23db77fe6d44552fc33e604888202eaa |
|
BLAKE2b-256 | 17dc6e838041644ed6b00c60dc4fb8fdc1d0acde38f8275cde5b2b962d5ce304 |
File details
Details for the file dbz_python-0.2.1-cp310-cp310-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp310-cp310-macosx_10_7_x86_64.whl
- Upload date:
- Size: 770.3 kB
- Tags: CPython 3.10, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c05fcf10ba39ac054b021d37b7758aa1fb3616ec1f5184504a29d49800b8ff1 |
|
MD5 | 4e1712aa12791b55ccd44c99612bc9c9 |
|
BLAKE2b-256 | c3f83acd82e7141c7693988541621cd732b80e2e4bd33e2f505828dd36893633 |
File details
Details for the file dbz_python-0.2.1-cp39-none-win_amd64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp39-none-win_amd64.whl
- Upload date:
- Size: 357.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05c92f4638f37169b56fe1fe56851be0464557190df857b2cc1ba33790c575d9 |
|
MD5 | 67b8c0875efabb8e597cb0ce6a8d2e56 |
|
BLAKE2b-256 | 2d85b6abe359a48615e39ee021ef2a7232efaa863cb01b006f23015a1384d1e7 |
File details
Details for the file dbz_python-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a3b8794ef7b4597eb03f8fce61d0464689c97542cf2c7a63ea8013dd8c53294 |
|
MD5 | 8798a39cb95c67ec69ea317ccb610fe1 |
|
BLAKE2b-256 | 0fa6a29b2403a06fab943e289fcc83ebcf614661d0865239faa50d5956a88cd7 |
File details
Details for the file dbz_python-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ae462d2ca7a26b15d5f50cff38d454cf98114532809f33bea31fced0615515a |
|
MD5 | cbb0a7c0b18c26e4fe1d62f180d718bb |
|
BLAKE2b-256 | abd8550088af0b3a794a9b14385be1f31ef2ce4cf4be40d842bfb691e0f5a3d5 |
File details
Details for the file dbz_python-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f50c1da8fcc3df241f6fadf4c341987e36ff093d8acb2def87bd751366c2b8f |
|
MD5 | b1e224479efb6b0327a97b2a04536902 |
|
BLAKE2b-256 | 571446d8f172c0d4751b615762f9664a08bef7c100ce25984080c6786fe51270 |
File details
Details for the file dbz_python-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 998ab4abbe21831640852f498315ae2bcb9399365a59169be5734289749ec58b |
|
MD5 | 56d15648f2794e085eb1ca814bbc1881 |
|
BLAKE2b-256 | 56e86f8d6e70943213db70bc6d2e96694225e968a5b3ecd85b1180449c577a7e |
File details
Details for the file dbz_python-0.2.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29f764772867932f5122dc9c41d9eac52802560144df2b3d6a0896cac9f5319f |
|
MD5 | 78ffa87940225f2c708d2a2d0bded89c |
|
BLAKE2b-256 | 01200de387cc40621c955d92dbb08c0177181b2ec389262c0605b0234f35bbbd |
File details
Details for the file dbz_python-0.2.1-cp39-cp39-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp39-cp39-macosx_10_7_x86_64.whl
- Upload date:
- Size: 770.3 kB
- Tags: CPython 3.9, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb1af31df00d6b9180be7f6270700cc5a4f51673bbcff1db69c4c2cfcad83bcd |
|
MD5 | 22fca2ea289da1a0acdeda0cb95b2768 |
|
BLAKE2b-256 | 29bd6d3267d2c02bce85c5ff8bd85f057433b8b55bffc25823a15f5223d3b55e |
File details
Details for the file dbz_python-0.2.1-cp38-none-win_amd64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp38-none-win_amd64.whl
- Upload date:
- Size: 358.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e16251a2831130894b953ee4423481d04632d3710f17b79ce205a997eebd4997 |
|
MD5 | 97afb77f101742ca7df58bf64729cb1d |
|
BLAKE2b-256 | 2b1cb06162a080b5f51aa4a5674271d529376b7fdb7d23b2a873c379d5033b35 |
File details
Details for the file dbz_python-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f6f0470b036370f13e5dfaccdfc26b91f19588b06be1152fbf203abf7c141c7 |
|
MD5 | 9603ddb533ccae35df00a5613ab71ec9 |
|
BLAKE2b-256 | 8ad89ee6e3e87824dd22bb72194d9d586bf1900d40c2eb54fb56bacb149f92fb |
File details
Details for the file dbz_python-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8227fc0bf9932548c58596111cdb387325cbd863e3fcfec3e98c8c288b023610 |
|
MD5 | 9049eeb19a895ecfe8040e52fa6914d4 |
|
BLAKE2b-256 | f6618da425ed97ba1285d145e65f20550800760b92b9e4e2cda56413f77a27d3 |
File details
Details for the file dbz_python-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4316711f25a98cf595f3a0848e77d67476ed20c3a8cecbe217120de1426d1cf |
|
MD5 | b25c0a5c440192b19c86732f0e03b2d0 |
|
BLAKE2b-256 | c8b9edb768bc253ede86fb3bcf894a8867d8980f95ed3d82659a778793eb1dcf |
File details
Details for the file dbz_python-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0509dd68b68187ac5ef35f13499c803e9ae963eea613e12fef3637d0f9ed73d0 |
|
MD5 | 7672748ecfe75b562a9a157ce4c3d77e |
|
BLAKE2b-256 | b56b0891d3e0f2f0cdaae7c604e7beb52706bce4bf17d6d2e5a067fa6a085049 |
File details
Details for the file dbz_python-0.2.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1c9316416c1bf4e73015d6d9fde16f4aec61aa4b87962a0e4e08d25a126fa8f |
|
MD5 | 3de436e2a7919757cdbb832e54c9f2e7 |
|
BLAKE2b-256 | d56cdf94abcdc093664b4d619b98195bf7d86d27b7fdca736e927c63daa6fcc5 |
File details
Details for the file dbz_python-0.2.1-cp38-cp38-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp38-cp38-macosx_10_7_x86_64.whl
- Upload date:
- Size: 769.8 kB
- Tags: CPython 3.8, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d56475b2360afd4f170a26bf473fbedd3bb504703e523915886c0cfc5e986ee |
|
MD5 | b6e209cd45aac582d4103f22cea56de3 |
|
BLAKE2b-256 | 73258f6cc6dbacb377a70afc15e3a3cd3bd3101e73155875d53c4e33e03c4cdf |
File details
Details for the file dbz_python-0.2.1-cp37-none-win_amd64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp37-none-win_amd64.whl
- Upload date:
- Size: 358.1 kB
- Tags: CPython 3.7, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd99b69eaf3ee73576bb4a5a18057489269854b9678a5aa29feb7cd86b3260db |
|
MD5 | f882c57ac217e36eb0f368cbd9141f8b |
|
BLAKE2b-256 | a8524989c4bfe55a3b073d97d54447770b70b5dcc265c3eec29b6909c4f7b001 |
File details
Details for the file dbz_python-0.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32f629265a03259a12d7c77b8c0380a9437719c3f3ed4c897cd3d31eceac03b4 |
|
MD5 | 1549bda04a4c41b373b36df048eeefe7 |
|
BLAKE2b-256 | 2456216a93084fc64b2a9b41f1ac6237d6d1671c1cb417e09128ad54d4f7f9e5 |
File details
Details for the file dbz_python-0.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d3dd503ae836f52c7d19c2ab3d54e2a93a406e78884433df8d2bbabf4917864 |
|
MD5 | 04cea1df8dc5b6d31824a32f28cbffd6 |
|
BLAKE2b-256 | 5dbaf34602780ec54eddc78eb9b18b4a8bd8e8f5d34bb15f36f0e652e04d04c9 |
File details
Details for the file dbz_python-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ec00583ee86a5f3cae4650d01f6f9ad0c2d79d41c57737259ed4c5a5083d5c6 |
|
MD5 | 2d2b4569aadb2cb0f1c36d398c96f381 |
|
BLAKE2b-256 | d7f1851746d28a51b32af17c718a20655c2f7c15c7707f5b35469d0dc2281b47 |
File details
Details for the file dbz_python-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9027a7d6545f47279c09b82e905d652351884ac25e592c119f459ce96b5266d |
|
MD5 | 36e9fc139e67641b3c8f4293f2e3c5da |
|
BLAKE2b-256 | 1dbe84d98915340c1851574cf3114057547a6d374f2ed41c39108c5bfe203c48 |
File details
Details for the file dbz_python-0.2.1-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7m, macOS 10.9+ universal2 (ARM64, x86-64), macOS 10.9+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6f252558f2019434b5a5ef8e99345b5c00575459222f87ab36e928e42af4f66 |
|
MD5 | 9c4af5ba7047df763b564da1bff07849 |
|
BLAKE2b-256 | 56d866418a2775b4146600a7502ec28e719b673ff1fc79bbd059e569d0d79b76 |
File details
Details for the file dbz_python-0.2.1-cp37-cp37m-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: dbz_python-0.2.1-cp37-cp37m-macosx_10_7_x86_64.whl
- Upload date:
- Size: 769.8 kB
- Tags: CPython 3.7m, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 722ae35cc10eb1aa941f8dcec0b0f96ed013fa92e6ef5af4b0e39beb66098cf2 |
|
MD5 | cdf4d8f280767f785675e62b9eec8f95 |
|
BLAKE2b-256 | 1eb940c118c51e0b29832b23b05d855b648dbac395eee0a76cd43b10f8e5e112 |