Skip to main content

Library for accessing DWARF debug information

Project description

dwat

A fairly performant library intended to make DWARF (v4/v5) debugging information more accessible.

My focus so far has been on making the type information (specifically structs) present in DWARF info easier to work with, so functionality related to that is largely what is implemented at this point.

Current Features:

  • Get a list of types by name
  • Get a map of types by name
  • Lookup types by name
  • Formating of parsed struct and union information to C-style definitions
  • Get members of structs/unions
  • Get underlying types of modifiers (volatile/const/etc...)
  • Get byte size information for types
  • Get bit sizes for bit field struct members

CLI

Though dwat is primarily meant to be a library, a basic cli is included:

Usage: dwat <COMMAND>

Commands:
  lookup  Find and display a single struct
  dump    Find and display all structs
  help    Print this message or the help of the given subcommand(s)

Options:
  -h, --help  Print help

Python bindings

dwat has python bindings! The documentation can be found here: https://zolutal.github.io/dwat/

Examples

There are several examples in the examples directory that are worth checking out.

Usage

The first step of using the library is to load the file containing DWARF info into memory, then invoke Dwarf::load:

    let file = File::open(path)?;
    let mmap = unsafe { Mmap::map(&file) }?;

    let dwarf = Dwarf::load(&*mmap)?;

The dwarf object has a lookup_type method that can be used to lookup any type implementing the Tagged trait by name, in this case a struct will be searched for:

    let found = dwarf.lookup_type::<dwat::Struct>(struct_name)?;

Struct members can then be retrieved by calling .members() which returns a Vector of Member structs.

    let members = struc.members(&dwarf)?;

A struct object can be converted to a C-style definition String by invoking the to_string function:

    if let Some(found) = found {
        println!("{}", found.to_string(&dwarf)?);
    }

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

dwat-0.6.1.tar.gz (26.6 kB view details)

Uploaded Source

Built Distributions

dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (818.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (812.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (818.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (812.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (818.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (813.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

dwat-0.6.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

dwat-0.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (802.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (820.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (788.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

dwat-0.6.1-cp312-none-win_amd64.whl (273.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

dwat-0.6.1-cp312-none-win32.whl (266.2 kB view details)

Uploaded CPython 3.12 Windows x86

dwat-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

dwat-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (997.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

dwat-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (802.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (820.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (788.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

dwat-0.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (812.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

dwat-0.6.1-cp312-cp312-macosx_11_0_arm64.whl (375.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

dwat-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl (391.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

dwat-0.6.1-cp311-none-win_amd64.whl (269.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

dwat-0.6.1-cp311-none-win32.whl (263.3 kB view details)

Uploaded CPython 3.11 Windows x86

dwat-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dwat-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

dwat-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (818.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

dwat-0.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (812.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

dwat-0.6.1-cp311-cp311-macosx_11_0_arm64.whl (374.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dwat-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl (389.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

dwat-0.6.1-cp310-none-win_amd64.whl (269.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

dwat-0.6.1-cp310-none-win32.whl (263.3 kB view details)

Uploaded CPython 3.10 Windows x86

dwat-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dwat-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

dwat-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (818.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dwat-0.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (812.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

dwat-0.6.1-cp310-cp310-macosx_11_0_arm64.whl (374.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dwat-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl (389.2 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

dwat-0.6.1-cp39-none-win_amd64.whl (269.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

dwat-0.6.1-cp39-none-win32.whl (263.6 kB view details)

Uploaded CPython 3.9 Windows x86

dwat-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dwat-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

dwat-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (818.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (786.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dwat-0.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (812.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

dwat-0.6.1-cp38-none-win_amd64.whl (269.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

dwat-0.6.1-cp38-none-win32.whl (263.6 kB view details)

Uploaded CPython 3.8 Windows x86

dwat-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dwat-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

dwat-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

dwat-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (819.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dwat-0.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (812.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file dwat-0.6.1.tar.gz.

File metadata

  • Download URL: dwat-0.6.1.tar.gz
  • Upload date:
  • Size: 26.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1.tar.gz
Algorithm Hash digest
SHA256 b747e143ae9397f28f337876cb125d84aedf1897b78e8fcdffbf799fe9ea4e2d
MD5 cd543acc04ebe29d09b781294fb4367c
BLAKE2b-256 a51247fe7accd194557f0b6e732c65d28659a4b0c80f708e28384ae8c02e06fd

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12ccdda5f60c3a65d04650221a7fb31966b59c7cd6081aed7358bdd112fb57a2
MD5 1a8ca4d1e0351289e50955c74899dd5d
BLAKE2b-256 578455772c5b6b0facd6d72ad492a9d0c947435e95b80ad93e11ccc18a961b19

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f49fe3078c66e5bbf75cad5b014f1bc17232bc28aec3b9599effd377360b129
MD5 b56e05ae7b04c85c1e85f5cf4868c14f
BLAKE2b-256 62ad5308e54f01d3fca0d0c2b567bd9c4381a6237dd956e6fb7c2620a4a6402b

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebf4f558f22a2001fe0e3ce7720479a88405ca51b07a81e66953d5f501719f3e
MD5 70313c9bebe4edcbfc1541aa26669e08
BLAKE2b-256 b5ee153e73515c9760d203a395607f868742072978cb645d3115dae9b41fa4c5

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8243b8ee162aa67fb974903c637264dce1718fcb93bc71bde0881b671b0fcc31
MD5 6cd60d68e76f84a5faa40fde5dc73577
BLAKE2b-256 58f783bab437e655fae27cb242f91412a6b2c5633fd1c31d542ef4942c2ac65e

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86a4bc5a4e840ae931df31b89f2c47e3d1b0e7ab84796eb4e499e8bd9055a675
MD5 6aaa9bf3812d6166f5c00b2530ff339f
BLAKE2b-256 3a1b75ecba91df7ea159f9d51c36500383015b4576f87bcd35ce84297ce4840d

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3913cbbbec7aaa5b657620fd5bf1a8a6041010b3c3075160f4cb7448595c25e
MD5 e3836043c1e3c425063a8c4249ae35be
BLAKE2b-256 e07d61684b17d15abf96eaa27114d03111938a95668530f7888eedea2c6d7cf2

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f80bf4a3b57945462652b2391f5b2a1a45e9230daafcb3b4072b188d30b0ad1
MD5 7fb4b86836f5469127f24f349c989e52
BLAKE2b-256 3c221d62c4588997988826765a62e6ed3a0fac70b0a2532f9bd69d2b2010c645

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e80338d197c6238405132fc081f14cd3eafe4ca7294141fa49283e949618376c
MD5 bf0a72c01e866c88ab9690d018bdcac6
BLAKE2b-256 8ef8e284ff2421dfbe06a138f1fd11c83073e586685f968dc83c6a945fa320f5

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7f20a0bb280d720637073d330ffbc863c62099ab0d0eab26b452ca576599863
MD5 1fb47ddf917881733119ea2996e3ce44
BLAKE2b-256 325b3f42ac10a6def88f2076f814d94e6a34f2b716db903744cd45b682dea0f7

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1dc8b03441c2131d565f7662274c7c7d75cec049f5bb37f6e2839c5fbf80bb7
MD5 b74f1592f8eb29480122ac32cb1fe202
BLAKE2b-256 aa7ff3dc3baa2de2cf0f6d5fdeadbd949fc1fb997c3b206619c6ac6e62b34cb5

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cf11610cd77d63c2028c745dfe127f07d4e946f31f9a714f88b421e3c1b3854
MD5 185af855af62d6a85c073c71a0e20fa2
BLAKE2b-256 e23786f84faf8c2d92425252d7333be67284320f02a53dfbb67058db6ba770a1

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 317b7c9413a84819a39492fbafc528496aeecaaa934fcab3f56630fc850fec56
MD5 c0ec9b194c3b22cd09dd00d3a1df7d62
BLAKE2b-256 67692870258f515b96d129c1581aa2b6a97f9b833316afed4233c88da95ac00b

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc40690af3259763612993ba6d326eabe6e87dc2dffe363d61670d1c11a66728
MD5 93afe6c41ff0a0cc2dbc0a934465be3a
BLAKE2b-256 ba2e69246a78bd1e5209cd56d01e9f57ae8c99528d90dcc25fcfc355afd01c98

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 944277bc1a9fd5927d1055e4127cb95b1bab1e77c62a8c46d158266c56c0b6dc
MD5 291c247abcd5c00b4388331856822ae3
BLAKE2b-256 1a8e434b80cba6a903a35043a0cb8793afc45ada270ac7004a4daacc11cf0a92

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5e5c5e6f2916ad2c650310730a01e3be17ac3b8c1f6d3cae4c554667aae8362
MD5 9858f818df9d8702aff305d79d46a31f
BLAKE2b-256 245b3e07ceb4804658c6132ea4824aaf3eda147b87515d9ff4ba3b3b1ff12fe7

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c9886c9a28632d8d1a8aee814cc95ce448e3eab761dfdeafa58ba283ef5fba5
MD5 563d94eb29db1e15f24756edab3b3137
BLAKE2b-256 863de2ca4f2a4fea7bac82412ccbcbb69e9efca275556a48f9dea8e66c25ea19

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 124276a3cb63530ff8e91943260a2a2fbabfb842b2bf23a30e75a3cad184ba5b
MD5 3b11f77d5c53d98fc8dd9eed279c7738
BLAKE2b-256 ee4c5417ab645ad3f2ad27d9a2a1c5f46a3293703e53c22118dcd433a8ef09fb

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb798efcee4a1c1b0d67b78b7ebb5df4f2c8536446a3fad7b2974f77648cf2a8
MD5 4fa4e8ef91d046ddee117ccbfc7566af
BLAKE2b-256 b51ff3d36b02966f6fca4fec95e03e75c6f61aa7d009f02a62a033b82b1917d3

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7614996e13bcd492db66da52adcd1b318cfb1e8572b782e180df886d891e35d2
MD5 0bd280c509a2cbaaffc56b7e115df465
BLAKE2b-256 4d47a2a7e432408cde55b81caf889c50cafb0a1d1c6f6ae45a27aefdb39430b4

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c6a6546959234f583b9fcf880ff3c0264b31f100b8e6b122ac06324ee461945
MD5 87dae51bb9f086b6d4c2a55681949692
BLAKE2b-256 418df2a7ec2442e140220441c093ed3f6c842b7feeb322c92f94da7336f5472c

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5ec06cad64f68c29589c35c6306905bcea0ba5737f17ec4e7ed540a322efbf8
MD5 8cf016dd6262fb0294b53f388da16d20
BLAKE2b-256 df3a7934fbebd8cbb48ae4eabdc909aea3632cd5c6efcb9bad70a2962ed13247

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c713f510b141f5d8b70659600cd55bb2ac7eff367ca4125bc6da3f6dd69d96e
MD5 a68d6a897523c463c5794cd89790ee33
BLAKE2b-256 1d6e9e5ab4b30fa7f7fb90318d6d27fb92454f699f9e58d8c87a67cc6f0cd02a

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: dwat-0.6.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 273.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 34c979cd91287a879f19402fc9844bc8ca43ceaaf069a4b26803a712e9c6b2a0
MD5 1dff52f23e36ae72c381b1f62a440e73
BLAKE2b-256 3506ca3fd3e99149a00ee78d8c31b061c9335f82e478551fa5c6da697157bb74

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-none-win32.whl.

File metadata

  • Download URL: dwat-0.6.1-cp312-none-win32.whl
  • Upload date:
  • Size: 266.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a9109c944e28c0e457beed7f78f1a5c7cb7c7b72bcceef67eb8bb80c2cea7282
MD5 6ecbeeaf1aa8c75aed9f26ad62aaaa71
BLAKE2b-256 08f7f3753ae7f06f65a074a997912a38dff4a41a617aaf3be4d21e0dd41a7c61

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cbee8cfdf8aee06683b859a66ec49a847b977cb4d605348c8d099aab97dced3
MD5 000542b77b220441560b1327a53a88e2
BLAKE2b-256 27fd484ddcbb5e76a15d92a3afbc9392a522c6350bc8f222d42925ef89be67fd

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3981e676eb62910e11c5cda03ec81c41f79e6d4f6dfbd2e6b9a04b9ef8e85b6
MD5 6aa5fea3b1c76e5a0e053f07670d8f2c
BLAKE2b-256 7d458b33b9fb026e98f9ab016a6102b0132f56f8da24e7c09e712486f9d4cf18

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db834c06eb77f03bab209172d8d59b3dbefb5f66d1118d8c5cc55519b930db32
MD5 03cc184c8616276bc17e3b1c07d0ff45
BLAKE2b-256 b0b2d116e7e29891372562641e08da46c7195f1b6f4a2070f03ce8008e395e65

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb17228fc81649a94632a6e8032e8673f2f00cd45997c315b3ae447662f1786b
MD5 c36ca55a5740031c70de93d11339d055
BLAKE2b-256 3b4fe2869595dca3ac12066d4ed5bdb9cdf57cda768b75c282112455231f3012

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 391e735067ca9d677e047836087eb73aaf46e9be394bfda8062234fd507adb05
MD5 8cf0420ffdcfc9aaef6d1282267e9262
BLAKE2b-256 9e55ffd2a7206018ba1111703ea9c2620ff9c1d298f6d52e13292bdb62bd4aba

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b42cd973f3a7796761547215bd5db06e592c5b5a7f6330df1503760a268b37e
MD5 ae81fe06efd65040d04f26ceea99d9b2
BLAKE2b-256 569556695a24c3f1f9505d5466a5cd947edb98329e1e8b915d8653eacc89477f

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ead43fc2522ccea2748f9562399f5ec608133ebb61c2fdb80efce9acc93aff7
MD5 9011c92042ffe45f4302e99833725c1a
BLAKE2b-256 4753f9ef61dba6d30711e50cbd31b76889396fb456a570834c429be7049b06ce

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3420da4a0d4ccc94a070237477ea48dc38fca5ae6a662ca23d8a9a5f94ea77bd
MD5 5e85028cba13113a916c4f3a07b82788
BLAKE2b-256 4e8a2391430e3508184689b89bca4306856318e5699bdff9fb5e9b5c50e97d0a

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: dwat-0.6.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 269.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 37ee36fb58bd1c782d60b7bee94cdaa11f58c8de63dfef2ddea363a3f959676f
MD5 dfe743f93757b984f6086a4646c44bc3
BLAKE2b-256 9bc36b5ec1884aa7a00d05280c6ec5f6a1b0f0aab832bcffcd4a339a89787821

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-none-win32.whl.

File metadata

  • Download URL: dwat-0.6.1-cp311-none-win32.whl
  • Upload date:
  • Size: 263.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 9a4bd2491b80d882c30f647496fcdc80632a22c0d1c95fc661e3e937bddf2704
MD5 bcaa6450d543849bfe7ef92e481438b3
BLAKE2b-256 90c465d6228ef1fee8e44485496507427c7d0ba753245a0a4f712fbac28e02bc

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9a07bf77ddb89555cb73e1e89b641ccbbc8a11c6c0a8b2b24681c778a3a5c5f
MD5 a9252e173b925dc10e4fd26f6232a752
BLAKE2b-256 4f66ed4bf7f765ef29b80e514fb1b6d6e3ce59454f55140d184d9937c36443a4

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4950480d38197ea88481ef2b31dbbd28d95ab1da9d89a9632d72cbd3d1a20c19
MD5 affe9eb47e8342686a515fc9bfdfe72f
BLAKE2b-256 155de5a6573dd74478ea3ac0c6160d9328c8882166ac152716dc4408ae136db0

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 585a44ed3ce91a88c21892c7060d1cee74a61eba5a854cdcc5c88170f9b2776a
MD5 79d780fd26ee8d8ceb8c0d8fdd354f5a
BLAKE2b-256 eff457b7f0b50243f1eafb7ad0f3aeeb01386c53821aeb6c2a76830fe73a600b

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af91e007bb2462418e262dfd069a90cca502c927c26129d66c32a14aa45989e0
MD5 b9830351a1c509828615858d19488841
BLAKE2b-256 3451f0e5eba0af6fc5147f452c78a13b97a4c7fc0f834ee32f60ad826dfaebc7

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cb5f71109a95206b2322dbbd37f3240b2d5d2bf3e1ef47b53c2ec0641a5c383
MD5 1a6b0d383341ed04e3fb96998559ead4
BLAKE2b-256 2989f11329fbedfb29171b21215ec4f386aacb913ae3aa93083b908bb73fb58f

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7bf7b5b6400c681cd86eef0b48348736841c414046b2c694dec84aa781af6280
MD5 b13995ed24bb2321a6ca2b15b3cce28f
BLAKE2b-256 f6e9c9117d0ed23302b6f80ad92c3742baf6e2db2df4337c7ba44a8a8ab2ce85

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8982e2756b9fd3a7bc420ad221e9b8f28fce12789a9d7a2d7c6b5abf94877488
MD5 63b26f7134de71ed9a2fa48e4086e088
BLAKE2b-256 493ba54da436ef0e88c40cc9cd9b8629239ad739858369e20d1ae08d3a9f49f1

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e6c70be2c6489df0af0e5f7fd8f381abe57c3edb6664071df868241756b9d8e
MD5 d31477ab682db165fac0d912794951d3
BLAKE2b-256 55f2acfcadbe1af7f6689f7f12a74a567660c20f0901096f77aa55ba456ae94a

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: dwat-0.6.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 269.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7d66d99fd442eafec5b21cc4052c7c448ba3fc85f0e0a85d5495905cd313cbd2
MD5 ec770942dab5e330711d40f7a13030f2
BLAKE2b-256 e52190bb36954fd7032896bb220e5d54ee64e7b59a9d2e76f15e6a44d6620fc3

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-none-win32.whl.

File metadata

  • Download URL: dwat-0.6.1-cp310-none-win32.whl
  • Upload date:
  • Size: 263.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5b76ad2aaedd6c40ea3883cfbe6ffdc4b51d5f8d10a67970f7d69abd52685348
MD5 80e155009f0e121c2b278e94dd66e374
BLAKE2b-256 d359bfb592a2dfcd71db37fdef5e8df245965947207df05a48a51fe4125bfe22

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80030042b9905fbf25478e79b4236117eb7a6e9646aa317f0257f37873b98c0c
MD5 19fd1e052169508a645de5e1a38d3751
BLAKE2b-256 a68743a21526496a6086ba476ddb401382f26f138b7e91a4e57622fa5ba58cda

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04252979b77be3f8bad17c602eda888a3263f058da8df5c8f6b31a60ec37679d
MD5 39cae22f8f263978f381179d6bbe76e0
BLAKE2b-256 0a2157951b8f45f455b541396255e1462a19866cf6c7dc1a756acb145214e4c9

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1d12ae0c7bb36aaf704ca89c85b294705b114e3e17ad84b27152d108dec2b93
MD5 e7f4be4b1e895fc8a9e1d6669f0203b4
BLAKE2b-256 f8b323975cf8c3a133b7a4e3441eefd6f56b67d7ddcffaa114b4cb2a39639fef

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9aec0b331f1828f70ab063c39bb74e01616fd887395442b0d7a1f5f7e81384df
MD5 7efee12c64a1059f315f4449169282a8
BLAKE2b-256 b55692955bb4aff3a4ca3322cef98c63ebfdfc725da2a6cc961d7b9eed35e499

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f019164fe34cec61db7955079f83737ab1a4ea573ccd2438ccef616b1454ef20
MD5 839bb8e167cb22e5a5ac416d8e17d774
BLAKE2b-256 fc8d14977ea4be3cc6957e17434e6a3177afc1922c4107652dc692681bc78a4b

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a247eda1ffc3e20b27216384c2b2609df8f1a22e52c8323e116c666f2e936dc3
MD5 bc1660726dc02dd117828165c25d5ec6
BLAKE2b-256 3aa8bf3fc454dcdc5fc8b9ba54a37c01ab2440ee26ad5eab4b6b314c002a9857

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 115e9b8744aacfc4c5a1333288121372bf89009fce3f6a17a5a58d8460cb8f5d
MD5 b8acb173f69622d0260b92d992cdcd9b
BLAKE2b-256 58e3447a8bf6e6fd046528416092c3ca08924985a93b30f805d14913e2b47394

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04a3d171efbed4e20bde170a562eedc0a5bb7b6dbb7eec6a83abe265b7b8fee4
MD5 c01179961a53a1652ae0e9fd7ee191b9
BLAKE2b-256 fc4b84cba0d6207b5363d2a3de8036d5f7ec8f338dc5e2490aad4461939d499b

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: dwat-0.6.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 269.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ebef02b9e98103a55644cbb92af1a06fe9f3df9ca94aa142f2f272e2024b5cb6
MD5 3bc8dacc902d01ae3c0edef04dc5a90f
BLAKE2b-256 0359fd2a0d622c00c49f4f0ba159547ca1d054042d29c929173e271e3d4c807b

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp39-none-win32.whl.

File metadata

  • Download URL: dwat-0.6.1-cp39-none-win32.whl
  • Upload date:
  • Size: 263.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f36e83601ca99c54849897ef9223aefc5f23a6ec0490b3849c36290931135199
MD5 419f9bcd6eed20fe1c97bac192aff435
BLAKE2b-256 1496ee626a22a402e9f398e0de8a1d6745447df4299ff8be1550ffe3be64b41f

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4b5887e782f2b0fa04f5e7b3fa53febbf54acaf7e19905f6515e6b6ac9e160b
MD5 52e28eb242a52bd6957e789cb17b3e8c
BLAKE2b-256 2c72c954686421c476f98428734c836ace36daee1c944d03469505d7eb4a8e35

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83156eb2b10215a15970c4c51609db0386bdd3cbd7d4800429444ec2fadd1c31
MD5 38d4ca922c56e712c4b51abcc13f92c2
BLAKE2b-256 07a5364eb5655c941454b4f0bf6a70f7e6685141a61b8f055afeb112d6655897

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff8f213876ae2cd0f8bc40623c1b2ab371aa39fb5b21efc6d74c44a1a3916790
MD5 ad8ba50d2eaded6bc3d7c6eb3127d31d
BLAKE2b-256 d160499554ae0f45fc399d604f0d43d9d8bbba6006f12bc22769ced04530511f

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 646d4bdfb0738e86f329b0e7cd98d34b98c5c94e5d62e1b89aa435338e71432d
MD5 920bfeca5e1e799ec23ea143e810d87e
BLAKE2b-256 47855c7b394f6c0c192bada1c2423ca7e59fab52c705445b5610e75acd852975

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 003cb059e90ec2487a6c4d6062a6871b18477910f7908f7b1ef001e732e45874
MD5 dc9a0bc6c36b4e98ffeccc46c504cac6
BLAKE2b-256 ab0a5c61af29573a72e11fb1ff4ae58d1858debdadb40b235534e0e6cfb0fc58

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b1c11c76d5f10982dd58620471e5021ba54b3bb59bfe649186f910a19e8d802
MD5 0343e6153c57a286faede2634159355a
BLAKE2b-256 6d468147c3b7145b7e7361dc3ae880cd36a15f5969ccc96ccaa5d753aacf7d6e

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: dwat-0.6.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 269.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c5c3bd3d6ddbcf09373442793dc1633191305ffdd404109591caecf52b582d40
MD5 43a957a0ec6b37752090786b551bbec6
BLAKE2b-256 804f8cf69396dd848ba2103b0c9f07b324ad7c932b54540acf30e4fa9d14f1d5

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp38-none-win32.whl.

File metadata

  • Download URL: dwat-0.6.1-cp38-none-win32.whl
  • Upload date:
  • Size: 263.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for dwat-0.6.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3d78e5313fc2b581743ce282d6f1fdab9c28d02e18661e2e5ae6fff3759a1f08
MD5 13fea4b2946ba4fc9cdc5240e461d133
BLAKE2b-256 acdbb46b45dcf5aac77ef3096a1891afc16dc583dc44a4c866425c5bf48bb4d5

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6102589aaed1d6fec1bc9ef5c2c4457d9a8b09073140dd668f1e800762ede513
MD5 0a18d253ce0132429aafbe3f08b1e375
BLAKE2b-256 8dcb2de992363f6023a68c9d9b562df01637a51eb53a2ad61a621b9aa5df6ff2

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab8095e3fd9402b4186f5797252af0c45184e8bd41e81d88d4b0cdc10db05025
MD5 de29b3ad691a506f3e31fc8764b04759
BLAKE2b-256 bee5f6ac709c11ddff00b7f95bb698879121dd59012d5d9f2196e833e6c19798

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17d357f819baacbcae7a26fb8743ce9d999c87579f1c50b06264bf9c2b64e295
MD5 4822f7fe50fccdbce1315fbf282b5b01
BLAKE2b-256 3abe3e0a16eaa5d728885cf65322753f5f738de232cecdf81f2dfaa5c8d10f39

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcf168a3fd7caa104b4d8c8c12287bfb82d5ed3d72bc410d8c2dbf505640b4a4
MD5 1299acd934e8c8521733c338507276ed
BLAKE2b-256 d8491377b4e81ff410b0eb332b5d9e560a3f85197a0c9f3d4b4f137027aac771

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62563e51ce35079852c2b33bac6d301065a6d0c0ecf3996c4ffb57b0d9e12ba9
MD5 5c2df5997c85bf9027df4ceb5cdf2b57
BLAKE2b-256 e1f9316b9a3640b8ae9688a4be705fd39bdd1d16660823f5b0a3aa4f9dc2f639

See more details on using hashes here.

Provenance

File details

Details for the file dwat-0.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dwat-0.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 187d17886e513dd9f1da74158f7f253d8906a61c34a5bba66d5d76b86e6a890f
MD5 1c3420c1ea4a22ad44a4ab199a22e0af
BLAKE2b-256 384d6d04a32a60da521413b9405934d4d0d116d6a5b048c4a10c0bb5ac5cbd80

See more details on using hashes here.

Provenance

Supported by

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