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.3.tar.gz (26.5 kB view details)

Uploaded Source

Built Distributions

dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (787.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (817.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.3-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.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (787.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (817.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.3-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.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (787.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (817.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (813.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

dwat-0.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (996.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

dwat-0.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (819.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (787.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

dwat-0.6.3-cp312-none-win_amd64.whl (273.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

dwat-0.6.3-cp312-none-win32.whl (266.1 kB view details)

Uploaded CPython 3.12 Windows x86

dwat-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

dwat-0.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (996.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

dwat-0.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (819.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (787.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

dwat-0.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (812.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

dwat-0.6.3-cp312-cp312-macosx_11_0_arm64.whl (375.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

dwat-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl (390.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

dwat-0.6.3-cp311-none-win_amd64.whl (269.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

dwat-0.6.3-cp311-none-win32.whl (263.2 kB view details)

Uploaded CPython 3.11 Windows x86

dwat-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (787.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dwat-0.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

dwat-0.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (799.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (817.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

dwat-0.6.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (374.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dwat-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl (384.5 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

dwat-0.6.3-cp310-none-win_amd64.whl (269.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

dwat-0.6.3-cp310-none-win32.whl (263.2 kB view details)

Uploaded CPython 3.10 Windows x86

dwat-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (787.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dwat-0.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

dwat-0.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (799.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (817.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dwat-0.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (812.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

dwat-0.6.3-cp310-cp310-macosx_11_0_arm64.whl (374.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dwat-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl (384.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

dwat-0.6.3-cp39-none-win32.whl (263.4 kB view details)

Uploaded CPython 3.9 Windows x86

dwat-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (787.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dwat-0.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (988.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

dwat-0.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (817.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (785.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dwat-0.6.3-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.3-cp38-none-win_amd64.whl (269.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

dwat-0.6.3-cp38-none-win32.whl (263.4 kB view details)

Uploaded CPython 3.8 Windows x86

dwat-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dwat-0.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (989.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

dwat-0.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (800.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

dwat-0.6.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (817.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (786.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dwat-0.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (812.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.3.tar.gz
Algorithm Hash digest
SHA256 afcf1c01bdf06e9c4297150e3856d41fc3dd39cc7e83a3c3fc7c66ef38208391
MD5 71168053279d7c30f5a8083eca8439bc
BLAKE2b-256 a0ba1743a82b08d19db79a6f44d05e5d2e27377d32152bc8e33c983533399cc0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fa9342a086f0534cbfd65bb1e736b7d9ed5ff8d0e40330892c8d6a05adecc4e
MD5 ebb4e96a8efdf43a78e846ae4d0b2fb3
BLAKE2b-256 82c21601f03a7d40b7fe468acde8910201c194da93c7d701f8a4c7b33487a66c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5904d7529c4589969627bdba03c5a7434fd9c52dba0f983280909277ba652ec
MD5 85f8bf0e22abb1b7c6568c744d0161f2
BLAKE2b-256 b952fd93ee578f8a877b50088e33eaa992f1ad34a347f87299d59fc9edd60fdb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a0066e45f1585dd95cc9978eb43a2f73bfc62d35c818b6f7c012367e8b314cc
MD5 cedec3a439dcfb87b71b5864ceb5f8ef
BLAKE2b-256 e7f6b59c15e1a99481c1090cdb71550ee5800ccec4f81a6d6c2151dced7043d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5d6bea379a1a4af1c7d26ee4606ec1ba183b10ed63ca3521f8e641e020bf7a8
MD5 76695eb61389ede394f9bb3b36d40504
BLAKE2b-256 4a83b77ca3c693b6f36cfc5edfcfec95bc6e5610f01a156efb51cc25976e6276

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b378f6e2b7af73582c5449f20588e89e2f88c325ad8d9d12b92ff149ca41c181
MD5 c4e1b78044363a0358a574fbcc0f04d4
BLAKE2b-256 2d98918b59b94a8fc9b65ae87fed1974c2b3ca2372bdb56e7ea4f4ed5552687e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ce1391e88f80a3862ce5d0e288c595e235e463128f3d79bee399486c8892735
MD5 4cb7be49c7c47d286394dac096fb3b8c
BLAKE2b-256 9b9b6a786e8c988d6f3985aa8ca725e898fbb1c5e4950459b07a693e33a44051

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fb6eb374b70cfdef46d1e07977e5c14f6bfef59ffa69bd56ad1fd9777443da3
MD5 cdf15aab095c407cd536f0fcbd8d8d31
BLAKE2b-256 848301a883e5c76690cb26e9226d4a55428e49a005a9ed82ccd6cd993aa79de4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52cf315d66cdf6e9e10c9043bf8536af299b2df056b957976748569673d07710
MD5 1b752cd39e07eb156bbc5e82bc694a96
BLAKE2b-256 b585248b76f6e6fc557456b9f23fbda4807b5bd30c67982fa40a90bccc1abaa3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72b892eafe41797e8f034c8c0dedb3df9190a62f3a2e3194577e48eff7457678
MD5 73971774806d3f418072eae7c476e059
BLAKE2b-256 8e2f6daab60990aa49790f2276458c1352e061daab941a85736c3ce86c5b0afd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12d311f29a353be7ed9e76fee31f01b887cb86b13f7b3a6b157306419c84ac49
MD5 d877a9fd1f3e28a92d2c1432eeab5284
BLAKE2b-256 57827cda58e43ea840f4a18aef70de141313a1db660fde1f361decfe02c0a199

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c46d436e542def5bfdb55f76d41ad4f6814cb2a29cef941c855e6563669a3071
MD5 615d26163b4ec599a10315082534bbc2
BLAKE2b-256 294307bda910354c162cab09a0e09da547a4e21b7ae503202fcd559b1bbc80fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 639ed9e6c7936b43909979324f3a78fe10379d394f89a208bbeaf70af1763d80
MD5 785f69a8d93e83a6bc9bb37bbf8537a5
BLAKE2b-256 97c686deef45fd867bec8647485508f48c89eb28266e882e6d575ad105d351ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7535a4c2a87d646cd8fe5df4ee22b069b879b31bdbf3c7101cf66d1997a3d9ec
MD5 317ca0610ca36675ab7216b34bd2d9df
BLAKE2b-256 afc8468300a633117f3c167d58179870abef697a4cef56f3d6a408f655f5872b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b65a3fa47f484cbbdda426620bc6849a13854f29ba26916ffa50662299d51df
MD5 d33e04bcd19ed7688efcf194ec8a268d
BLAKE2b-256 dee35c1db8c9a99158cde598b8d794b97f69485c654bed9088a9dcde3fd345fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39b398eb30a12607a28e4b91153384d6f24f51cfd4402064430e14c171a9d741
MD5 4b244ca3755f541e91991f40d3419eed
BLAKE2b-256 47f373a780aef430b68f858def2f6262cb9f4b2e31e9dd26b14f83975eda694b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0520fa53ba3c71416ae7160c4eb5f233d4ffd59580fa9a0323189fcb6201506
MD5 35cc15a51f9390511259dd152cf33f4c
BLAKE2b-256 af1bdc125364498132d73bef1c6bf4127a501dd068e7a98096c5a8902e02ddc4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c87e6b1fbac426a1592fc37c7680172cd433816b292be3549e4480d4004136c4
MD5 f559470472694f5d4691c1dc2b8e1197
BLAKE2b-256 09a081ac2d9ec2af99b458985bdd8738d195036b4637bbccbab96ef40fb2e233

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffda553e2698d2222a3e28da12d6aee910e902a7f236b0ccce292075d18376d0
MD5 cca3c9130c677d5b49f5a512407c4192
BLAKE2b-256 f84e5ed03e0a3355eb195c3bb5a3942b5faedfe980eb050e712943a8f1650f61

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a9b2bd5fe28adc3e8b87f9a5db93449f3871718baa261c0a02216f37dd0684f
MD5 b0dc1b08d6286deb3b718f494b6ac168
BLAKE2b-256 a3f9b829e98700d438a0b6f7dd5d7cdc5ab03f020726cf4ae47e16576e1293e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79d1bd2724305fd30f6e48fe4647870960c38b3034bf780a5cbb6a2e599200b2
MD5 921aeb24e9adc1368f755f9420c9157a
BLAKE2b-256 f9e45ae6df739dc0161fe1c9d972ebfea88cf0bc1df8e1a7d803acd00fce3a82

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 008c33af19ebe807f9b34cee26781693ccbb6c06b7782a83d6c81411fe8d0181
MD5 4e7d5c9a7695890395f32a3fc3c4aed5
BLAKE2b-256 d3b8daf512377622b62af4ad07ccdfba58a70fe46b71ec6b7a74303ca6052a00

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eadb38e4610aea13acb4d40dd517b6bb05a66c9caa3a8d486ba53f6bc62574e3
MD5 2acaaf211dfa97d613a3e00628300f7b
BLAKE2b-256 1c42f9e7f0573a04fb926d719b8b16a27bd4fdab4908a4aca08b6fc93f29e9cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 273.8 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.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 c213860c4b50ef94ef510b08bf7e0457245d7c33f51a76ce6b6f28f21600e1f3
MD5 d60773d28d1d79a2e0d92cbb20dbae19
BLAKE2b-256 f3ce2da4fca3f6e90481907afd99b6f588f7aa56376f49674d0ae728450252a1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp312-none-win32.whl
  • Upload date:
  • Size: 266.1 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.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7fd4669edad9a6aa1b45098127b8cdbd20dc9b8901fa210411000f5169fdf2d2
MD5 1b4f318105c7800e9c00db831215bdd6
BLAKE2b-256 356b13109f1db8e92dcbcb921ed5475edbd02d6aec7251ea262507819092d705

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 928f723622221613d525721eb144455ae1893755915fbd22ce96d6418d6fe075
MD5 a756ab0b18ea147f02c740cbc5472d28
BLAKE2b-256 0914da0e79fa5450c98ce440840eef8bf765b8a6b54cd6b5f9c2b9e46f07e85b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9870726e6b35b18af5339ed99ba3138351142918143a5b0dcf44c44749a9027
MD5 399e59496fea38626a87680c1c7908ed
BLAKE2b-256 6db6e904a2c829ad7ea2b6b454d99e93e896463b01fdefcd9c0bc9b49216b50e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fbb8f38ea7baf9a17a7568b222210bac2f4992be583ec9e525dbce4c81c6053
MD5 abfe26050c75600c6942b3c84b252919
BLAKE2b-256 9d5dc45c108f58399ca2f6b9467bae2dd410b06f37a29bb855a5690b603a6492

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaf9469a8a772cb581dc1d01687a7ec06544dc59895be7d6a8d8a2fd295eafc8
MD5 c3edc87f5a15960e945981ba454bdbd1
BLAKE2b-256 2e49dc184d1fb7880b17d29e938d64bb4bd1f82aff12cd85e6e310e5e2b66f69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2010e4f38a545652daabd57ed33a11556049d90cf380a57b0be6a888396accda
MD5 398c108ac8054409a800869746421597
BLAKE2b-256 89406de8e9d12cdb7ec30026f4a14d9bef3be98c4b4491330515f4c98f9f53cf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d81561760da7a12365154170ddcadb5d7fa88beba236bc4aa70cf8674a62d73a
MD5 fb9def8810320efff88934c399cc7d1b
BLAKE2b-256 eabeddefecc7a8b15be259d9831e8b1c81b14667260cc19e2f1d67c1659f6df8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dc08341810bd2808dd8b758015cc53ddafa80323433a8acfcbfb25cc77a8959
MD5 3ecbd9f6548ed3060cbc75d1bf1dec4a
BLAKE2b-256 8eafbc2807ebad442d8fd75be93860d8d18ccc8b6a5842ee08641f3152cda455

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a117f93525f0f29bf6dcbc6d032e9583ee3d538b86f7f66fc1dd86e4b8c91e98
MD5 08513e702062868cc78505900ee4adb1
BLAKE2b-256 1b46c95af164b8507bc2cef0a6edb840c0d48b5548e305e0587f3f1d2eff57d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 269.6 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.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0a9d39eeaf196af839f4229bc59f9f92cf2cdd15d67b7b14abd6336b5b6350af
MD5 9003b314367cee550379264a799f43c3
BLAKE2b-256 40dc8ed8c05fb9847e22f4411b2686298eef45513c9f0a9b01de87c0d5586df9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp311-none-win32.whl
  • Upload date:
  • Size: 263.2 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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ddedafb0c1c44af37379e94280f19fb33c488003bdb0713a2de3ee9e8306bb1c
MD5 8c6fc97b262dcfd0ec04860a62398a41
BLAKE2b-256 a406907b04281b14b4107d73aa90e74fc4c8374f21ad04fa00006be8d407b799

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da9f4d575d10bdc392c3858b59462cf4213519a780991257587c54f6e3a8069f
MD5 d46142a8c20c074df3ffa5b091a80a27
BLAKE2b-256 92dc1eae2d22c4535811b54dad58e12f18f7a36e7e51971f0ef3f35ccd029083

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 226a06fcfa6ffe0e22d680e1ea5b5cb4d54bc157928cdb5b1ac85e937a711c2d
MD5 a3640080f1e23eb1f25bd025f1dcf450
BLAKE2b-256 afd07a83b2d6ba370c12248d4293a5737b5f0fb4252a2536c57866667a998f9a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1b1efe527c83e870749cf347c3343bc1f7bf00bd752ab035e2ac353ecae58c9
MD5 0c3626a4f80ca4401f4d73f62ee8021a
BLAKE2b-256 597be57b87bd7411136c0049611f02cff897c4fd21115ad753c07fe8ec4d8fce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 814d315b6f797e7127bc02e379a7b6ca70aeab7bafc5e517a971706b17fd5978
MD5 7230d15b54b1e84f4757ca71e6aaef31
BLAKE2b-256 bd85bf9ff51569ef3b9d2985d659b427d7baaa2876558d32b1906a7c14457db3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 423376adccd44132402411f126db7382c7313787f355649022c096bfa286fc0c
MD5 5dd15957365c3744dba6d229900be485
BLAKE2b-256 df1ad198ff304d26f3fb08bccfdc8b385ce0392a700a476dd821a8b384dfefcf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad72e1f96547fa2a1b9465ae7c5523d3486d3ef31fa3102e35d79bd487030eb9
MD5 3cb576ccfdc025867bbfd93b9aba4902
BLAKE2b-256 a9be33e74de2afb9681dc6e55c52cb7933a9d4ed6a59692b626030d18527f6fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 009a13b3edf496b54d5ce3627120d16bf9b78f858b6f22277521c1e8ba38cf41
MD5 868fde0253ca79853ddbc1316bc7292e
BLAKE2b-256 891e18dff132372bca342b4752e77e99f9921ef6cfe442c739a921f51cd59b3c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb08e10772ee0a133649dc1ca850a550ac81be3806553f71b89925ba4772e32a
MD5 220238e74a71c65d75c8e2ef48ed53f5
BLAKE2b-256 43f7640006810657b3aa16e3adf8dbdf77914a1cbc8fe4e898371601160a512a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 269.6 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.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 a891d6941f1ea5e8a7bb126749a3eedc5d0481974ec9fa5ba52f3bbb5b33f2a9
MD5 81b8422190bce94f92c1ae8eeb827a08
BLAKE2b-256 d7cb611dc47035b1838c23ba617d3e397ced05db4df9c4fc533e42a6c545130d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp310-none-win32.whl
  • Upload date:
  • Size: 263.2 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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a91cb8f9448eb75f2576f6d61caf02ec3329d5860ba9ff97ea178791a59632bf
MD5 9f4342f780c9f01647e6ca25ff58f631
BLAKE2b-256 1d1ee0b2d00cb2e899c9d5a28219888c8be163103b72dcbee113660706bcff72

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d4cec2441a5dd0fe48986a1d13a7b0381fc0825e174219551c1e839e3021945
MD5 c40938c7015fec7d9c15d41577847371
BLAKE2b-256 577d05451e68012b96b30d73639dda7c971f007cff3e762b403c76e066db2aeb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91bcb7a66f1b578a30274ee94e18c5f37a32c7183cd97da7249658ee0057cf3f
MD5 ddaee527d5ad5b11b432306ee0f54e3c
BLAKE2b-256 02b44fd821c1e9108ca50373592a1aedca09a143a1d2c43ff5ed1309e48d09e9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb2867b5ae47efd85902bd3a61da6f9a8634b2995b4a86cbe7a0c708ceb08782
MD5 646689b993ec363546f7ba2ee1f2b3a1
BLAKE2b-256 259bc3026ccf127ca4e5a1ed5d0833b485713131c9e4cf28f1243c4bdb463ab1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79c808f5dd6ac977ab303b4f78879c2181b49b01a9857787e9c78deef06fe063
MD5 195abb8f7cc8ca1e1b6429a284ce4c2e
BLAKE2b-256 1bae1a5707a368f0c441d66555484b1e2778e72958137facdc2797fa83b57971

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c53e247d5e2056a20c94d6140c8cdc31a4a96ce2e48f034c0f4901b78178825
MD5 7a94a528be1ea9afb4c2711c88a84369
BLAKE2b-256 5fd15a591f21403b3c826916ac068d590ab478accbaafc34be73390c7b7b63cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5df2cc49397c4df01673a33b3662576276950f5a269cbef78a580680e7755fa4
MD5 cdf4c03b7361c6485a94587890b81594
BLAKE2b-256 0e6e03b39516268eeda1a3d6db88f9c0544eb90022a02def7decac00c47abc60

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30b01f0e732458efbcc520078de0859e3f5009037c38c40610b009057e5ae4f2
MD5 81d35648ebdc0e011fc53ec21ddac320
BLAKE2b-256 b66517534c3964e90c6534c2ae258eef0ec47593b214952e5d62a5a1502fbf11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 daff3d31b91fcc830e3ab1feedcf7674a7b8e1e0f82165121e61a667bbd9cc54
MD5 1c05d2e46f1f6541a759df25288313df
BLAKE2b-256 219bf38d7f68502fc7aa4cfabc7212ce13dc335c5419bbc5012c5423f50b614c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-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.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 1e57f390fe03dff6285eabeb89f8185dde78c6845f24cf5b63836dacc913b6dd
MD5 30220094018679b348bc02a8105aa247
BLAKE2b-256 4b9d00f234a9f4263d3b73808c4aecaa7087f60468670202e9c4d5f7195da9d5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp39-none-win32.whl
  • Upload date:
  • Size: 263.4 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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a6f15d19c9a7184830676060d164e65d01425b006581c284062738b67cc04b5d
MD5 0748856852453dc7d2ff5e57e874a12c
BLAKE2b-256 5edf5a3b3059f63af7d37202c1b752c73a7bcd96afbb5390b0c55ec0405540af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8cca1e41b94b7c396edaaa58a8ff0f63ca7350d382e0d427f8a272af07979c4
MD5 55b3702d9a05fb73758c13035739a0af
BLAKE2b-256 ee6de046502f4709282d1cb129c265bc9cc48bf763cce9da064faa57ceb44035

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71fe61423ff6c8a3ed03a5b01a91af2f1a739bdfae7034f6c2d988eabf5a658d
MD5 4df39c49196eff2582c9667eb26f0a3c
BLAKE2b-256 fa87c0e8069877dc9e79949607c606f13b8d6bb7591d79524754e8f8591c819b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 caeb35add183a90c2395bf8aa388c4880d14fd335cfddce8cdc78bbe59271171
MD5 b795467a47c0a77945514df83cabc469
BLAKE2b-256 5a7a021abb059c81a3b4e796f1b8518d2cb4b6a21a6fe86aed6c3fb05b338100

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5009fb41648769432d17aa1416a80712d2eb7ce014e7e1fc1133db7377b47b5e
MD5 00a3cea7d9b92df9ed207b97285e060e
BLAKE2b-256 60c06c31eb68aa34f6193cba105ad01bab193a54302daedc9612c68ec574ff5d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4deeee5eafc47b07598a7016eb9a0feda72a62c71acbf40f9f0a90016ce60366
MD5 353220981fd660229cca70ca3c137394
BLAKE2b-256 9a9da0a7f21fa04f9c3787fa5aee621533b16f9401c58574bfe7c2a4692a1a5a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58ac568759dc46bf5ee0aebf52906a9599cafdd65306fabb91b7e1b8b2d9d31d
MD5 2854b052be4bfa609107c85a931df291
BLAKE2b-256 45030d626af17cb5638ace72f9b1633878a63db2c425b5d2c1c73ac672042adc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 269.7 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.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d11eecb5b3331bcbf8f06f2b0fd6bdf8a86cb43abc6d71e27971f07ed198844d
MD5 4817e420452a9854ea4cd1cba81285c8
BLAKE2b-256 c4402a7e712d5dabcb0fe2f2ea7acf7f1ab8b85eb3ef77c152e13b3944c033ca

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: dwat-0.6.3-cp38-none-win32.whl
  • Upload date:
  • Size: 263.4 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.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 7b0c24ba4b194fae17ab2e665f3c42551d430163b20ca98dc5b8995f597cfe2a
MD5 231da5ad9377e996a36f262853107324
BLAKE2b-256 e2513c5386892ae11f4f04f3e06cc87dc24f3c97438d577b885ee13964c82de2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83f855a920be501b09169317e4367bcd4a5b437249b100b4f09c920429d7822c
MD5 ac969c961f8755a4ad65ab68843bf961
BLAKE2b-256 66e80355a1cfba478b668e18ddf05f48370dce9ba8b39beea426ca1ca635f2fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b65908a32f6bffdd2a3e2a79069209b84a45b0679f56dee9e2993c53168038f
MD5 d7c3b5d2d9c2ffd3b7b225c992abd29c
BLAKE2b-256 d726f743e849360cd31a5cd760716bf4035ee26390fe58bee7f97c4e1be88f49

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a452f3a1738342061c3060c2e4eff47c785fd426cc100d0d6eda509c3491272c
MD5 fb3c4e4b51fb1af8d4b19b9af4a49d29
BLAKE2b-256 4526fc7f167790dcb33ffcd270c833e364bb02ec8c5eff894412cffa1266ee19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8949d3f2bd091be3370542a7102a0e4cfef3341674f296141976da1c358cd601
MD5 52efdc7cb0a48e538ca911b6e38a4676
BLAKE2b-256 80088de8b2b1ff888e9e66ad17798807c247093bef1bda0d6a45cea917630086

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5d4ad2796e0836b467e4028cf7fa2ec3ec3e50a1c01efc2ffe9d836e1dea64b
MD5 efafb05029d90f387d2f48d85dd6f255
BLAKE2b-256 bca25794ab3f9a4cbb4c644554073d5d268873a64f63afa2c8fb1475a6c66935

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c86b614efb3aa65e47e39ca9ea604c87c0fccda23be20c2e01ed8b1be2936bd7
MD5 61bd3cd6e16b6540faab3f3c7195c6d3
BLAKE2b-256 347c8f1051bbb3e9a4fc5ef573d1bb14ac380092a18e1f6dd0a44cf321feb1f2

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