Skip to main content

Native Databento bindings based on dbn Rust crate

Project description

databento-dbn

build 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

This version

0.5.1

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

Uploaded CPython 3.11Windows x86-64

databento_dbn-0.5.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.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

databento_dbn-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

databento_dbn-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

databento_dbn-0.5.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.9 MB view details)

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

databento_dbn-0.5.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.5.1-cp310-none-win_amd64.whl (547.7 kB view details)

Uploaded CPython 3.10Windows x86-64

databento_dbn-0.5.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.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

databento_dbn-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

databento_dbn-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

databento_dbn-0.5.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.9 MB view details)

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

databento_dbn-0.5.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.5.1-cp39-none-win_amd64.whl (547.9 kB view details)

Uploaded CPython 3.9Windows x86-64

databento_dbn-0.5.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.5.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

databento_dbn-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

databento_dbn-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

databento_dbn-0.5.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.9 MB view details)

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

databento_dbn-0.5.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.5.1-cp38-none-win_amd64.whl (548.0 kB view details)

Uploaded CPython 3.8Windows x86-64

databento_dbn-0.5.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.5.1-cp38-cp38-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

databento_dbn-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

databento_dbn-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

databento_dbn-0.5.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.9 MB view details)

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

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

Uploaded CPython 3.8macOS 10.7+ x86-64

databento_dbn-0.5.1-cp37-none-win_amd64.whl (548.0 kB view details)

Uploaded CPython 3.7Windows x86-64

databento_dbn-0.5.1-cp37-cp37m-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

databento_dbn-0.5.1-cp37-cp37m-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

databento_dbn-0.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

databento_dbn-0.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

databento_dbn-0.5.1-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (1.9 MB view details)

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

databento_dbn-0.5.1-cp37-cp37m-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e7ba3c1ca9b699bdd94149ff081ded1b370a38919f47943f38fcb470b1f6f9df
MD5 0d6debecba51c7e2dc7ff1ca167b7a80
BLAKE2b-256 4d923a7aeae69ad9c9ef04e5e8abae8e0bf7aaca0ba8efdd71e8380ec223606f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9816dd7f73fc8049bf3afc1062a73a260af2fb13aa8bde7be62ea3be5706d47
MD5 22f95f492dd2bf158a03fa56e166f368
BLAKE2b-256 6d4c600764f06d309a0136b6d025793cf04ca35c9ab5570a7bd6520850cd205e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f94d396f9847e66a372543da2e959c574205f2e85b2c5ad7ab574a4568e2785e
MD5 3b4bc0a98ecf19ad98bffcad5d43fd01
BLAKE2b-256 5df28898c80794caaffd956abdafe6cbe71f8cfadf27d2313bd4a603924e6811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ab4236c70dd40066dc46b3dfb59c9ae9f9806bd982e94afc6ed110755830f95
MD5 f10f31e2cd2a613dbf5376dc0c2bb957
BLAKE2b-256 f5e76430f2d096f85f8fcd2ad12537f9f11617b8c332d830d1bc59bed8561d78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba4423a67bfa49aacd41e70c89be665fd4df19b1048c829fc525214c19d69b5c
MD5 f973c670f017d017ae3117f514bca6d5
BLAKE2b-256 d0b8939762b5e76c1eb4d04fd3eff4e608de9c811e07ff90065589564b4ce232

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.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.5.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2f549cdce69ba5a00720c7ce4de91cdc84db368c066bdf36ab212bcc9fc970d9
MD5 7b8b277dab42f1f6774a65bb5d8ab496
BLAKE2b-256 cacb228fb7279489f0ca49034af6d76f55178a0fb190124ce539d53bc4dec97a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e92de18c845967f282439d9ab823f3fd3e7571b1bcdea660a193ccebe3994110
MD5 90170fbf6e7c507d0cb2cf948c44a9cc
BLAKE2b-256 580284f3bfd71d6acf2cc748057ff0e0cf8ffde225443d1e4e9dca93ca741ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1e9e90771ef9d5c9b1a52ef70bd58197b4d4749b01b315d5128282de23651fd5
MD5 18702b66205ce61e2d1313c99cd6c4e2
BLAKE2b-256 4690539aa9b7ac5ed1fbfd2546c5f17c0c691038b5c443ae2043d369c30a2c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3073ec9d4fe53d87635a52b354e84ccacaf3f98dc7dd23fe1333a09db5e8b984
MD5 72227e0fcbefc0aa84082b6ae67e9b8a
BLAKE2b-256 c562d6e43d17b37aba8555c7d817536508144887a50bfdb6413d8281e589a303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62a817eaeec57b8c3eb29087b06c30b811ae25e2222c743495f1cdfd4e9f4745
MD5 03eaab633fb7efd689704ab2e66d906d
BLAKE2b-256 2efcc2c69af5e396f05b7a6e4eeca988f7047820cdd97e33328c52d0b802f16e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80824f42053a99e891faa99162b01bca9af4fcb9020d7904c7035053d190c4c6
MD5 2046b04465321b3a7b8420cfaa8c6929
BLAKE2b-256 ee37df8ca4e6ad0a346ff190e1247e6d8ea7b6231ccbaf438783b2f3da08ba9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee0601680b01c0ee762cb538217235aa86ffa1be7c76ffb981bfb1346de309cc
MD5 bccda58d8494ceb9135d43abc4f7b2cb
BLAKE2b-256 07ad06ab8c5840f7f472f25acaeb246f582532041ea199ab99b8f9d8726dc9f4

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.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.5.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 61b22ad2bafd25989b19bef6379e81415b27675f59386d3849d3ab4eea1964bb
MD5 dea582e83fd527f2e984f24ffe777ebb
BLAKE2b-256 464360ccc1e4b2dd63c10459d3632abfbbffc63eb350da82ddee77336b3049b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a9141bc5082a1830ec6f2fbe62acb19db2ce2695a61ec09cc22f9022820c6acf
MD5 5f4ca7a4f195d05fdb31dd2aa9700e83
BLAKE2b-256 d2cac0c8e859ecb19486a50e4e795772ae7ce6d4b19480557cd1a2cfedaed5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2418607a01c80d3c7ac10b9039bd007531c28d857728f9b28abc19b088a8a516
MD5 cd2bc4e85dae54a855b928d7c121d09d
BLAKE2b-256 f3f09cd91430b6f88c883e7714be08f9661c2ae6ed6f486ac7b40a01b4650181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9af68f63aa2ad7cbe620227b6f7667bd445b11df703e619ff48919ebfee14dac
MD5 13e3c5dc403dcb2c998274ba1003e134
BLAKE2b-256 5faf526cb62a0bacdb243b4667375da82528117879c6eaa34474c4f48414eae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b978983ff3cf744e043cf6199d4775fb7194b03efe96354d0f2649924d003452
MD5 f04dc5969f1639d862a5de758a27a55c
BLAKE2b-256 4e45265d50b5a92e28f5c037ceea57b7a3fb709396b2f1ee000c8294f7ba8bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f852b4357ae4789b30f3c86b668a5316c97dd98a2191c8cc20a6d82d07228ab7
MD5 6d64c9e42c53b81af2a2191ba82e88f1
BLAKE2b-256 23e2de148d9ac9a7c94a64cd39c319449a8c65ae8c0935d3596cdf2da181513f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0f9817eb2736f5eb826f5d6575533679fd88e4fcd2ce9db73e303d7401d34eb
MD5 02db352c21f3f287c7d7abafd1f3ebe2
BLAKE2b-256 6527dd75ac5743121696f9a67dc232f8667ecf2e2d2264ad49b81b0d7fd1962d

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.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.5.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8486303e3d4496d10f6fc8799771cf1860b916734354131016a0953b11d032c2
MD5 3eed13c1d1a3453abfb4ee33be74344d
BLAKE2b-256 1210ab9b27025899d3b6772832e1a25476de6480283cbba52e164871e08e67a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 467a512960bd41e7cca14b407b8d77efe60b230be1e96eca50ffe312428b7681
MD5 aff9a89318e2423cd0e749cb6187e0f9
BLAKE2b-256 657f5eae4172b931bf6232a014fe7f269ccb3ca6f1584e0044950d339baf0b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ca1274624bb6d6fdf35357c6164a6bca5881ab74047bb46ac320f3792f06377b
MD5 415a7186138fd9a4b6075a52c55e179a
BLAKE2b-256 8154a5f2146199be296f500743fcb9df133837959502f79ea5e13066dcd4d76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6b16e5452a956b050272c5fba6ff505332156eee5f8318e57efae6e0ee76018
MD5 f7c0f09f0f8a9571c272986babc96326
BLAKE2b-256 de8074fe556c42a83fe7e8057104eb4cd8db83b66006d9bc258cad62cbc1ff0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcf29a9d35cdcde0ee567c808f2bd8c4e0ec5cb805881ecf10580e28bcf48ed8
MD5 74bebfb21a98f4402d78f1f27099e262
BLAKE2b-256 7500744daf85e56456cd68257c4e88fe645a4d15122589494a215e5542407c8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d52855657bb917263f13969e419fa768f99c908a78fbc772a203d2b6e014ae41
MD5 443f3b51026c544c14956be6661399e0
BLAKE2b-256 1a000b17127f03b19713986e7ff75319499049a58510a7f41b0ac79a1d314dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08f782f395cb1be16eadb800d04d14e034843ca4e3bb652ef3d757d63b93623e
MD5 7f759fdc5c2a3be813f61bdbdac465b6
BLAKE2b-256 dbb6c63d77809339885f8daa3f18516155bdc74d0c5ae397c7e5c5c5c9ff15b5

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.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.5.1-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b74e56a05711fdc9745fe31f04bf32f58c372ea159890119005db7c3c2d2d85a
MD5 c4f243561d5d52009753b71c2d849926
BLAKE2b-256 0e84935a9586dd19197a64a48f47a4ae87ffb6797cb7033cea36a4e7e2c05818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3ce7b9224caca68d14826fafa6bb88e1a35e24449a05f598601f4057c482d5e5
MD5 8cd482bc0050217d20ed6ad5594e9b51
BLAKE2b-256 4fc8ea1294a28344d593e7c94a491aeed84d85384a123352ed23e896cc97e4c7

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.1-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 74f09e1e052671dbe6babac6c06e1c84950d3a619499d303d966a7efbad9455b
MD5 c7c780cf26ee38b8e162417474f995b4
BLAKE2b-256 e0422907336d0309ed7761374c2ae7f7fe3762aca1d4aa2e30e22fc63cb80414

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 497392177188e7347dbe0577df76e7a5c010c9b8ce4c11ecfcb973ab44c6964d
MD5 4b8927c65d4d04c063f2cf285d29c250
BLAKE2b-256 5ea7ccf25fc6425c71eebbcea21c9c1bd4d66ddb71e174a02626a91d7f428256

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 881df46c4f3f8b11e9ec759d1e7df98bf06c939b27e025c57fe4b78731961f19
MD5 0ed0ecdaa693acd1dc9ec2db77a0563f
BLAKE2b-256 4c4ee70a38cae93283c76c90fb8035f8380606d1f99b33ab055f807881922453

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c47fe644cb181ebdc6acbee5d07a12e674796aa239f1c5f709575d7d34e762fc
MD5 5156c1363965b9086fa263c2609f4f26
BLAKE2b-256 7639f54ff095f721ce9d68afaf420c044b4c54a95c2279da9346f23800927433

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b4ebdb05bc21d1b6eab9b791646a2165ced4f630c5157ef01ade32fc1a13540
MD5 d5f47fd2c18152b524c09220330d4a82
BLAKE2b-256 a73b0faad8cdff0b39dcd60537a55e50b59bbbebee579da656a5922fc2157ba3

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.1-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 60b3d6eb0e6cf3c68f5fb3bd2adb8094c57c19200ef4eb3e6ae2c88b87491910
MD5 74e1178009c538d7371b46d5f3fea5c7
BLAKE2b-256 5db1d9a4b0d74343951f19616d5991bfc602bbb25a94f580135ab18d2bc497df

See more details on using hashes here.

File details

Details for the file databento_dbn-0.5.1-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for databento_dbn-0.5.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ae2dfaa473626554157ef446d989196e6b76e3a6169d0e6b681efc57445d3d0f
MD5 345ad4dd3118ab1064b9e76c69e8bf4e
BLAKE2b-256 51c6efe75bfc2960629606111e95bd7e7b895a3a5f90751e22c6d47608ef9036

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