Skip to main content

Python bindings for encoding and decoding Databento Binary Encoding (DBN)

Project description

databento-dbn

build python license pypi-version

Python bindings for the dbn Rust library. Used by the Databento Python client library.

Using this library is for advanced users and is not fully documented or supported.

Installation

To install the latest stable version from PyPI:

pip install -U databento-dbn

Usage

To read the metadata from a DBN file into a dict, read the raw bytes and pass them to decode_metadata.

from databento_dbn import decode_metadata

with open("my.dbn.zst", "rb") as fin:
    metadata = decode_metadata(fin.read())
# Print symbology mappings
print(metadata["mappings"])

You can write Zstd-compressed DBN files using write_dbn_file:

from databento_dbn import write_dbn_file

records = [
    {"rtype": 160, "publisher_id": 1, "instrument_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.dbn.zst", "wb") as out:
    write_dbn_file(file=out, compression="zstd", schema="mbo", dataset="custom",
                   records=records, stype="instrument_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

databento-dbn 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/dbn
cd dbn
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 databento-dbn 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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

databento_dbn-0.8.2-cp311-none-win_amd64.whl (651.2 kB view details)

Uploaded CPython 3.11Windows x86-64

databento_dbn-0.8.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

databento_dbn-0.8.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

databento_dbn-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

databento_dbn-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

databento_dbn-0.8.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (2.1 MB view details)

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

databento_dbn-0.8.2-cp311-cp311-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

databento_dbn-0.8.2-cp310-none-win_amd64.whl (651.3 kB view details)

Uploaded CPython 3.10Windows x86-64

databento_dbn-0.8.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

databento_dbn-0.8.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

databento_dbn-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

databento_dbn-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

databento_dbn-0.8.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (2.1 MB view details)

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

databento_dbn-0.8.2-cp310-cp310-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

databento_dbn-0.8.2-cp39-none-win_amd64.whl (651.4 kB view details)

Uploaded CPython 3.9Windows x86-64

databento_dbn-0.8.2-cp39-cp39-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

databento_dbn-0.8.2-cp39-cp39-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

databento_dbn-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

databento_dbn-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

databento_dbn-0.8.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (2.1 MB view details)

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

databento_dbn-0.8.2-cp39-cp39-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

databento_dbn-0.8.2-cp38-none-win_amd64.whl (650.8 kB view details)

Uploaded CPython 3.8Windows x86-64

databento_dbn-0.8.2-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

databento_dbn-0.8.2-cp38-cp38-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

databento_dbn-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

databento_dbn-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

databento_dbn-0.8.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (2.1 MB view details)

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

databento_dbn-0.8.2-cp38-cp38-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

File details

Details for the file databento_dbn-0.8.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c19068440e9855cfa8e8da27461becbbd1c9146a485821b3b3eaa75c71861e03
MD5 aedf63c3bee6bef0616f4ba82ccd9fc1
BLAKE2b-256 98382f1c58e4a0d390719f0145c321f7a0a1c18a29463feb3ca5aa48796a9327

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4bf4fa67ef9b026a541c06506645fdc359dc32971182904461f2aeafda61a19
MD5 2fe5e447039809750ae301f21b5e653e
BLAKE2b-256 2204c4a586a8b96d12082225b58987e85f5843672528462552de959d61cd463d

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0e78387d972487b90b668ef541efa7ddf4d127214d0e80814fc79b65462eb31
MD5 671ba3d0f5f96f6df87cdae5a9aec839
BLAKE2b-256 d478b84537a998962ffab5beb0b44385adc9a868985fbe6a3d59f4e09a444d5e

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6103d28e150b31a386c2d716da1e2ec8ff229689af7e0335b2b350e5878f3930
MD5 2830d7a43681aba1be9a2c51baa73a7c
BLAKE2b-256 b09c5a9f7909bbc89d14a8d202400efb45f115c9873b3bb4d346f1673e9e029b

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9aa818206ecb23ced49a52ef1ad14d6762f31e2c0f601e351a938db36a74b22f
MD5 6ca29e8c4ba968f4515b82fc13e92182
BLAKE2b-256 9c73c8f385880251876690fbaf9e0ea1601440ad01e411024d26558806e12999

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 23754b3b9175f40e99467bfece8a4764a18b8af2f7ab9f7e21aa5e27845a8f82
MD5 1c23ef43f2baff1589e7cd770285d706
BLAKE2b-256 9269e26c7e364c545df155c1d76505673ef9c47f7241e97eeb7b19ca74960e39

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a186831e2d49129ce67674de25a96d751bb91e7662fd6deee9d09131c8c32f2b
MD5 619e51515f2d89f6200db4b25e414ae9
BLAKE2b-256 5ac6b9f5cef734059b69d4652c7edb4a3a1b0d002a2db47bf91c98502dbaa0c3

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8e5f21ec3ba811b86fcdb0725f251fa11d2b16c68e321f00e2b1ba472b3abd45
MD5 b5411daacd9325a597d5dc03aedd5196
BLAKE2b-256 5633093464a329aad663d93ceac92670dd9e1029614d46d3306a9105f34b9bd2

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2c93bf2eb111c26811d8b57da8987384ef718c27650ff5792c442d69d6694c1
MD5 a43bfffe8afe01ca747a90e69ce35d7b
BLAKE2b-256 85721ae09d9f0e50109dd7884d0b5599a91a901276c9739b4425441209287467

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9886018c48b3a2394bc3991c97b09853ef9a85ca57352ab832278d372863368d
MD5 bf2ff423a8f8eafbfaa5ea2d63b9fdb6
BLAKE2b-256 f8077015af362b46c2aaeca1965c898c4b39310e0f3e9e0daef0aa08ad642833

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a673cbe40d6509fa10567ab918aabfaacc06968693f8d42beb997808c0cac006
MD5 faeb2330002979561022a63c2a6e44c1
BLAKE2b-256 b035a227b5f30953c783f5537e1c23a6d85cd390381622f9e405683639291f22

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adf10f38fd3689faaf7245072628b07de4e25d9505ce2f76b5cbad143285eb85
MD5 5b48c4ce114e385a3e2834f7d91dc44d
BLAKE2b-256 35155eff3383e08068862196d7a6823fef2f3021e59d5a1ace8abbae3e2d6c52

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 45f69a6b7e345a0f0ba6b50500c0cd4dddabbeaf19166474e1ce1a5805622b3a
MD5 ed3fc80fbddd74a192fef41b9d285103
BLAKE2b-256 9071b1b6e2fac808180c774756ce250035de5b46c535f041acf1cf86328b8aa2

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6113e6df09471d092ef93f271b67eb80dbdd2ba41333e4574fece60abb781959
MD5 abedad6ba14a139a7896cad45a019563
BLAKE2b-256 e5b52525fa1596a02fefe1de5096d37ea4061decee43350f482e52c13dc69a14

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 33490b26264b2661e149ecc83fba7666111e8c9c6345f05b9dc4b8ee7df3782b
MD5 57458586ecab7e949e5f33f7e817933f
BLAKE2b-256 55054131ccd49c607f7696db2b8deafa74e3b5264f5b324a146d9cdd0b517497

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef9ef278ba1b83a1efadabc9d82c3249a4244e8f16a0d944fa6f9c481f830602
MD5 df4ace12cfee5360d89c3e9d8923ac20
BLAKE2b-256 1f0cd253a9cdc9be3fbe94c964ffa265b88b35a6985402bcadc6a2e7c4098aa7

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 325145ae2620e787f997a94aa2a55ac5e9ecba966d22e34026f3440586deecbc
MD5 5121e96509e35819e601004d4ca93138
BLAKE2b-256 e52755c7e53af134214d6a0d8b1ef4bac8c8f9774b495556e9593725bf982d19

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3747e2ae1a148542e9def3e95dfe1f348334a5a08d0fb4bf0853825ee57885ed
MD5 f5f73de24e9d2ee4138389960d85e826
BLAKE2b-256 5aa5a4529975d0c65e084cfcb09e5df663aec07b5170e57cbb97c19cdb8fa4ee

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ec170cf472898388cf8daa39eebed8e4269f14ab95a281ed24db26f4c5604f0
MD5 c7d1b20a65e179643880ef41a7302076
BLAKE2b-256 9bd1e620e10357140bdf84026c09eb0e911b635b428d410d0204bdc7579786bf

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f34711c553e11db04d25dde11a2a84ca8841b9028b9150eea0edfd3706b0ae64
MD5 fde4c30a5b32887bf42745c9608877bc
BLAKE2b-256 430951e503a8bdd326a90a0ba4c986ed355fd3eab27195919d286a2d2c6ece63

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8912da7178a579a08e5599f66c56a095ee560862c9068a496bbe19a672fb5031
MD5 bb011fe55a07bb91ef19b3a4c2851f69
BLAKE2b-256 15281738b7bbe37e2fdac7d8def7c86c62a2a70a5f6a17253c0f8c2231272bee

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 4f473140accde90de9d79a3ee1f67be103f6a5d8feb0ba85204d7c359d5dc396
MD5 55365003a51d65b5ac7a04d3488651dc
BLAKE2b-256 de3e0582f56193433650699ac981c0db1ea5e959212dbac3d6ee01103d13d56c

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a31ed58a5eb08e4d5baa49cf939f7a36e62b52c83c83605b73f177ff972f3aea
MD5 b53f5c5ab98e784c529629cc9d016eb7
BLAKE2b-256 47d4050d7e8ff9650b606f9ba6331c703d005568a00e906bb3941a18848c5667

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ff7ac6eea6d209744e530f3161f595182199db4b3815b5f9ebcaa17fb0f999e
MD5 4a791c15178720588c204b506bda81e9
BLAKE2b-256 a1bb2e43fe1394d0c10e16339de602333307d067e04aa57f192c4e8e5ecba886

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36c3a8e9731d0d25602925262082b24b7dcb14b1a9c4651027cdfbf15f01272c
MD5 53a1b184afc113b229f7a307969b493a
BLAKE2b-256 9db82b83cd487f57409c96386a8ce21cc36cae0bb1f2ea8a01d60472b41d7d98

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50ad365df1fc7479d3cbbd9949ff0998f5bb7a075158738d772ad7673d616a65
MD5 22e4515c2b91e0e686e0862467082cf6
BLAKE2b-256 049cc48dab6001853dcb7cc42595d60e741f97daf1d55aa1d6cf26951c3e3dd5

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 efa2ef5af19412f49644d7bc219f58ff49d06f64875fd5bc751e633a0f0a6e20
MD5 9614a97480037cd58a6072a687cd3396
BLAKE2b-256 329d6a3b15bf13237c5cbba4b8d31043d43c29270783ef63947968d455cf29e0

See more details on using hashes here.

File details

Details for the file databento_dbn-0.8.2-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.8.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3debd25b053eeed886951c7e7f8325d40833895085042e41296e8a3b12152edb
MD5 9e4c16f696e14eb653b9826d578b5fc2
BLAKE2b-256 64a67f92a63fedfbe641b993e927f8148f776220120383033b7257b8b50dfd16

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