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.7.1-cp311-none-win_amd64.whl (585.5 kB view details)

Uploaded CPython 3.11Windows x86-64

databento_dbn-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

databento_dbn-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

databento_dbn-0.7.1-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.7.1-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.7.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (2.0 MB view details)

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

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

Uploaded CPython 3.11macOS 10.7+ x86-64

databento_dbn-0.7.1-cp310-none-win_amd64.whl (585.5 kB view details)

Uploaded CPython 3.10Windows x86-64

databento_dbn-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

databento_dbn-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

databento_dbn-0.7.1-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.7.1-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.7.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (2.0 MB view details)

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

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

Uploaded CPython 3.10macOS 10.7+ x86-64

databento_dbn-0.7.1-cp39-none-win_amd64.whl (585.7 kB view details)

Uploaded CPython 3.9Windows x86-64

databento_dbn-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

databento_dbn-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

databento_dbn-0.7.1-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.7.1-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.7.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (2.0 MB view details)

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

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

Uploaded CPython 3.9macOS 10.7+ x86-64

databento_dbn-0.7.1-cp38-none-win_amd64.whl (585.5 kB view details)

Uploaded CPython 3.8Windows x86-64

databento_dbn-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

databento_dbn-0.7.1-cp38-cp38-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

databento_dbn-0.7.1-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.7.1-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.7.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (2.0 MB view details)

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

databento_dbn-0.7.1-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.7.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3469e18cd567285217a821b4a9be05b72e78933bef37f060c810bf5a5f974bb1
MD5 7dde291a72e9ada2bd0cc6ff6bca729e
BLAKE2b-256 891ab2e8a635870961012073f0d69b35bb9c2aaf7f14b94f3e79296effadd252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95128e727e06f6c8d8adef8cbaaf0a07fcc20999998568e8d10f53d82ab4110d
MD5 a59d144f3d5b89d8cb7342388618c722
BLAKE2b-256 3a1d5b851c8abf61ca2957cbd8b8484547d4e4ae630d0cf4685ccb4dbbfdc944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d0f5598655c14ea7cb9d326d6d55ffe3c5c3afe99ecf5e359d3a1320a2b3b7f
MD5 b4106b46a1415904f80f650121daf0ef
BLAKE2b-256 c58eabd84f095eb558d5ded345d3eb12df523347071233832b994477d1d67714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a5acf338e6a119d3ae8808acce22db0f2ff728094cc0ee09683bda1ead26b3b
MD5 f5e383bca9565bca4e0e2e3dca2ee943
BLAKE2b-256 7bba6bd59e7bcdb269baf709fc0ff72d19da0a5aa19d388f4275b560673c4120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 097b1e774b46ca699ed6f96d9c8dd524cc1ae3f2c720eb21e5582ce3cc660acd
MD5 71729531447eb9b2cf98bd6a32bb82f7
BLAKE2b-256 a8719b8c83837840f8d46d357ee0df41aa5d96603e2cd55ac67c246915c0b0a4

See more details on using hashes here.

File details

Details for the file databento_dbn-0.7.1-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.7.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 559aef839b05e842657c9c45aaaca047014ad36f73732d97c5ac182f7162d1e7
MD5 b9568565782beb25e44175f5cc51d4f6
BLAKE2b-256 57fade9722da06647e11b3c5b32830126dc78936760f134a8ab458f012679f63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d55250c3a08ef9aeb59c360b67a5d4da47550ece476db33ca861f0ba5f299312
MD5 a198f7b9c3f0ca72131bada20c676ad1
BLAKE2b-256 78b9992cce55fa020f9b1634aa6ee5ff597cd158cc62d9c32be48d3f2b628936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9cd3b05924c84f626663095f03c7934dcc30a55eefc96f600240f59f1741547c
MD5 76ec79bdf423f2e112527a114ca601eb
BLAKE2b-256 6dda44183ee242036f2413b1654ac1c35c40b3d1b6ebd3dfe376a64f93f6b37c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb1bc036b74da707f993eea08463d751a871b43ab1d3d1c206bdbf9c886982be
MD5 f8dda791ff63b8872da10cafff1c10df
BLAKE2b-256 e9d84410ded38118684b1430722ebfaf04245f6533979ff29964ededd9836b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6e0645100d1d9cc36df12226462e05c4f23aa780bbd3b91e44e2c3f52604e18
MD5 13c99cc160dda117509fb17ec1231fd3
BLAKE2b-256 5f7f034b7ee34b68ea8e804e2fe8f4e5c0ff771a0913697cd378dd5c3c528345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a48759e7ab682e7fadda3af734a0100da27c42d162fbad3edc764b18d9b17867
MD5 4e4720253f32298dee6aa28210f232ba
BLAKE2b-256 462abac9a5897a8a738c28681a4b5db407680d27495be50663bafbd97bc5ebcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09e8d244b9eb2c2a616feb198a8d0ee2134a1ba3b2bb27ebb3f309e4a253f7c7
MD5 035138d0bb2279da15f27839db0abe4c
BLAKE2b-256 06673ceed073ff9b56a95f84866479bedb1608b7218d8c495be7de760021cfe1

See more details on using hashes here.

File details

Details for the file databento_dbn-0.7.1-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.7.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4171b9179cde5f576cfb67ead626afd99d9aa40d31f482b132d7f4ec37373424
MD5 8baad02c515bbb54f759ab5586346175
BLAKE2b-256 fe28f7505053ed548e6355328cfda2e45dcfe377932ace3fa9ab11dd446fa00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cf379c9bdb6f5e8a34e7006e9aab791804c75e65eff6e3cdfb0e05e3a78f6351
MD5 305cd51318bfc89bb285bb751794e39f
BLAKE2b-256 6e07ca556240e8576a2465d80036741e2b54b2c08ea3e1f517792662bc9b99fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 dd4458b67eae1b7eb805e33775ad04dbfaa2759b06cad685d2f2ea4df2434eec
MD5 eaba7f4b7d0afebf5b83cbc76547f9ad
BLAKE2b-256 9bdcd48f0e8e7d947db885447d77dd23760187cc277713743f157039b4b7e89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39bab2a0f08fff47edcaaf94f74481963dfaadba7ed28ed3d1fdd8c53bcb7fd1
MD5 c98d923fef7acadd105a8eb1ade017b1
BLAKE2b-256 ccf62b77eb1a53d8d92724a1d4734bd343dc8f432b37b88699ce57a8ccdac866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9027216d023a6ded2f77b9e2f8389870dfc1586973e8d96db8f6d99b98027d0
MD5 5e9281563dfc8409af50e4956c97f45f
BLAKE2b-256 3dc1781f7fea2db00df0c741eed35a807a223e0faf0ecd52aba9a646bcef628b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbe1753f089230bf4fdb323ee45d06a8a09418e17a270de025287642bddee78c
MD5 1e8b86d80f09c331af48d34b71257ce7
BLAKE2b-256 3d4b51200e81061d7b3b9be5ab7155066a6c2f9a5d2ff8e622a92ad963e7dabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76789bf38127763dd708ae8cfee3c001e31a6903773fe986e06247a04314bcf3
MD5 bc4afb7284f4ea33e8d5dbd4f2e02da0
BLAKE2b-256 82480c2d09b0cc1b06ee2e1727fb323e80be46bc9fec35b25c66db53db63793e

See more details on using hashes here.

File details

Details for the file databento_dbn-0.7.1-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.7.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cada8f9cd37019608791a3f96176861ff210fc13e272973a292268fca8fe2f88
MD5 d5834374a20cf87f5e0f6afe7004b445
BLAKE2b-256 3598b7083cdd80d344d4f45b71c8f9e19241e04867f89f7d5efe496b63592c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8ded8e06af61fefec402e03a91fea16344fae0472a8c471acbec144fd10d4837
MD5 a45524799c128ed3ff3063d6564a6fc9
BLAKE2b-256 42be97ce862a42775da95830608e5c73ecce399295bef889c401cba660932ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0f9674114c4ba2e09942f738f54502c3f9b98a1e9c27ad18d59bfaac8c20578d
MD5 a4c0e9bdeed694bf328a03d847729e37
BLAKE2b-256 1cd0bffa1ae41e012b30c13b88a0a56fee7b177bd5468b82ee308838f0e82bb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbf23264510daa5fc4a3e3a9a2a9126c04e643c456086e4626b63311e90ec8f6
MD5 b1465c4837074346f8b52ab69abb1014
BLAKE2b-256 4ee504ea5778826b2288b93ef1c4ddc8183b5dbe22ebed25ca30e09a3bcb941d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a71d47d25a814f5bc1860a93d9b71f416cadfe7aa14f4a5d9276aeaf740b4fd6
MD5 03c0e845ba3c19904cfec5a3da01ed3e
BLAKE2b-256 922abc0d0c0f201fecbb5546fc74c7a2915588e9371269d2bb4fcb19c3adbbf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4475d3b342955e9220e94cea5716ad75be5fa1e64408b94dc075c457e44248a
MD5 f418b7dc91a43aceb28140214d1be2d5
BLAKE2b-256 15b2eea3c4a9903a490432518540b15e704f3dbb70d82f213e664026f2aaeaf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fe7fa142743de9013c3e281848cec552e0fd1acb9ec6c26bc80be1c810254c7
MD5 aca3c7701e278c28eaf9c6ae35a7d199
BLAKE2b-256 a592bfa3a6b71462bb68fd9df6dd99853a2f55b2eefe2c9f1918436ac616da5d

See more details on using hashes here.

File details

Details for the file databento_dbn-0.7.1-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.7.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ab53fc00823203dfe4d435b58dcb6bbc779473739806f359328ce80a2dbd846e
MD5 269398c49594fbe69cc0900145ac9dd3
BLAKE2b-256 c2e61836c85b62a24e5d2928923003993a01ba2a087dab1ed7d649baee3546fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.7.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f2df680e3186a61de489edd80ecd1d01a6906efcb72aa124007f5a61b4ca4f9b
MD5 0d1fa666a8ebc48265c0bf6473e55a93
BLAKE2b-256 5e808fc52de3d645a4e70a6dae8bef4f660eaa63211b9a8eabef1766ae0668fe

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