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

Uploaded Source

Built Distributions

dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (736.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (955.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (767.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (763.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (736.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (955.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (767.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (763.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (736.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (955.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (768.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (734.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (763.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

dwat-0.6.4-cp312-none-win_amd64.whl (276.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

dwat-0.6.4-cp312-none-win32.whl (267.7 kB view details)

Uploaded CPython 3.12 Windows x86

dwat-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (739.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

dwat-0.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (988.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

dwat-0.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (756.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

dwat-0.6.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (769.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (735.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

dwat-0.6.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (764.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

dwat-0.6.4-cp312-cp312-macosx_11_0_arm64.whl (374.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

dwat-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl (392.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

dwat-0.6.4-cp311-none-win_amd64.whl (271.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

dwat-0.6.4-cp311-none-win32.whl (264.5 kB view details)

Uploaded CPython 3.11 Windows x86

dwat-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (736.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dwat-0.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

dwat-0.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

dwat-0.6.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (767.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

dwat-0.6.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (763.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

dwat-0.6.4-cp311-cp311-macosx_11_0_arm64.whl (367.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dwat-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl (387.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

dwat-0.6.4-cp310-none-win_amd64.whl (271.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

dwat-0.6.4-cp310-none-win32.whl (264.5 kB view details)

Uploaded CPython 3.10 Windows x86

dwat-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (736.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dwat-0.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

dwat-0.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

dwat-0.6.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (767.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (733.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dwat-0.6.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (763.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

dwat-0.6.4-cp310-cp310-macosx_11_0_arm64.whl (367.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dwat-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl (387.1 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

dwat-0.6.4-cp39-none-win_amd64.whl (271.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

dwat-0.6.4-cp39-none-win32.whl (264.7 kB view details)

Uploaded CPython 3.9 Windows x86

dwat-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (736.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dwat-0.6.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

dwat-0.6.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

dwat-0.6.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (767.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (734.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dwat-0.6.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (763.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

dwat-0.6.4-cp38-none-win_amd64.whl (271.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

dwat-0.6.4-cp38-none-win32.whl (264.8 kB view details)

Uploaded CPython 3.8 Windows x86

dwat-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (737.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dwat-0.6.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

dwat-0.6.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

dwat-0.6.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (768.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

dwat-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (734.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dwat-0.6.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (764.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4.tar.gz
Algorithm Hash digest
SHA256 acb661970d99e1232b9688889304290c6f5360d691564e1d33785f6b1066406b
MD5 c0ecf18545cb34d7dad56bd215b6e9b9
BLAKE2b-256 9c69f0b06228a3fa1a4ecf26d70bb371a662435f004c5026d943dbc38cfb0672

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e064535f1f256d8154dee2bb46190fe4f4fd60ff0f102e8bf48ce7f41631a163
MD5 1dd9e6b6b42030da5e43f987167e7a95
BLAKE2b-256 965a75614c8ce3e202328739760a815c813a1f8ecb1c93eb0a2d0e8dcfd66f19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cfa71a37b7cc7e21db7fd9c6c3d63ee0906257ba223aa643a828fefface3f7f
MD5 60f7d4762692939e6adabe5fee7e1339
BLAKE2b-256 9d340fac966c444ad82a238455ed1c86ed2fbf9e587f3b9376376dec1e07b60b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1041f5e9fd5432969540b51424363dd32ed85d453ee171e19f971131c440aed
MD5 a69c63d003c3b06ea460cd2b64afc4fd
BLAKE2b-256 2668de1f7c2043a8f21acfd31eea48727d8c30e6e6aee1668aad2a7f43c9167a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cff68722b6e56b75a075948d11f86cc72a0b9b45072ce2c72b70059842ad308f
MD5 ed929adb1a24f34a3e68f4945a537246
BLAKE2b-256 c23b8fc549bad6d1d08dfd714c36cdab476847bd0a0afb448160e06253f79a6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a9b877aad22d3bd1512cb43035237e6f3ff08400cf7277a798251d030603e5c
MD5 e811f64804b0a0d997da72da34dedf00
BLAKE2b-256 60f6f8d5073c5d14b8850eb5f367c3f1a8586ac798d24828e09a49febf323be2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 382c0204a9754beca20ddac383c8289ca8e549902c0d35a4ef4cd2fda6e1d479
MD5 646cabf963bb1bc25c9d1dda0cd03dac
BLAKE2b-256 146b65a72ebbebe1387001a90ef47e9cd0b940abf1bced337bd3beb0365fcd60

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aad59fd6132898afc1d8096e98de9a3ca9d6e80e64b8c0d9fcc26544b1254d69
MD5 30559394a8c49dd146b81ab342f51376
BLAKE2b-256 0eda45dd3b46ce3596bbb79abfe5c04f838d919b5367f434f524ef4d0d5f460d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e9f9957f868d6d4f0c535d030a52d02a02173bada35058a300b178821abcaf2
MD5 30a6fca33eee05c820fd91b56da5e7c8
BLAKE2b-256 55e0d08f50cf26d52e603cf8be149864674cd974617488d962da4d81183eba6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07f291b7a1534669f10e6c77763ca9e873f80ab9a34c7a8e4a275077c3fd22c1
MD5 284d72c8a22c8e354da568120c846c17
BLAKE2b-256 fd53298c6375453430c2fef029ba498320be65d64d9f7dd662d9fb44f23e7fb8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53b60dbb48636c63bab13e6f651d9cecb6ead9c22937d1fdf6119c931f5c9756
MD5 3f74d7cdc130eaa299309b565abf0196
BLAKE2b-256 6756661fb469f5c8d74380e64f63be86564a2af7c21679d6916f4ee06adfe046

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2081b1950660d01e9368066096ab35e212b04337a82858287cf240f30fc2efb7
MD5 27da3777511cd89611bf1d823d67a946
BLAKE2b-256 eb6c2379a315dbeafd1c850097eb8a5ed6ee9ffef371076750e7e1f59b933187

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d8a64efbc550d2fb3faea9fda9149897e7633de794900f9ea18baa158400d2f
MD5 65c1acfc9feeb27037ef29979b617790
BLAKE2b-256 8d459a33d716978d4767059b54e193427bd23d2920cb3b59777b2f29740edca1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a97c6fbf26a10cc5b3a3f335d06b70733a5a8098b4241044657410df1c793a31
MD5 b0f144c639eec7960deb311cd73fee48
BLAKE2b-256 170c1fb8f9f87d22576cd6c36816c42826e4525353746222772835c0892090de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91681974117657bc4b3b200af7ca659346c5427d03f505b9dda604af5fb13ee4
MD5 fec22126e8f899e2c86d11f1990825b0
BLAKE2b-256 9af37e76c0408ac1020ef2836e15da38d468af53a6edb2407f9a1b1019a747ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92de45dd0707b7fff868a53c651d047d4c3025d4565188c78abaa263f0364391
MD5 5e047f3e3fc6c0d72eab724629c0100e
BLAKE2b-256 71b5217fea3bd85809a7a2ed2526a415d4e73b5b1e06e308a2be9923ffbb74eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31995f163e52c230e421665cb653cba09391390d4f65d3a7869c60b1cc99af18
MD5 e9c0c94cbc12912b1311082bbb336ba4
BLAKE2b-256 f22faec35adfafca4072644f7019f69a65513ce45781a3ebb01102fc7b1349f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b5dc2a56d432096fbb67cd4dcdd5bb55646cdacc0e8a20926490eb3691bccbf
MD5 2fb9eab11bd8ea109bfa2b494c6a2e49
BLAKE2b-256 e347fdb802cb3d0cca37a3cc231e5da87ab33f5ebb1015ea81598f50e9c0de9c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1fe06bc7b5e693111146b4142719e6ca83ff9607ed87031fda91966854cffcfa
MD5 1d742832bf060d0fd06f4f1b9b22077a
BLAKE2b-256 b8a3a55c18b8d30250b7af1aa395889278953e19cdad81f50deea2d118c479ad

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 1a08dfbfdd19c20860fb3244bc85d1f898b5af740615e9ed31a539722fe851e5
MD5 ecd1929ef0573256668aa369fce67af3
BLAKE2b-256 927845a5adeb20c7c524ad4170537448f21d8705e16ce0e96ee240e301bdde17

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f7bc412ba6372445c4d74091e6866267f759c4ddf94d189d000c715551c2f0f1
MD5 4fa5ed5eed3815ee91c681d295734a15
BLAKE2b-256 633ffa495ad89657c846a886bfb53c1800048c6b26b4f87348354b25be2aadff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b10d5872beba2e105ac8941522ddfba8ce1230f32a8c297a56d3c31c05468356
MD5 7c04a26277a577b00fb5e3c5809c33dc
BLAKE2b-256 dd4ef3c0972366c8b90dc3748f1fafb5d54bee82f4cf40adb27c45abb1e5ac31

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 334726bde9bd44cac0956a7389e9b470af623b6ef2ca19685ec2acec28004e35
MD5 4df9f98a5c2b4e75019440de5061b103
BLAKE2b-256 ece343f6c4a3bd48254ea208d9692da85079719a54bc7be6b06a6bd32908a939

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fbf75a6cfa23b290a0c0b397ec58093eb9f49d2f7eb71d18de87ab4ff80faad
MD5 2000a43bd2c141dfe64ae164658555a8
BLAKE2b-256 8fed67286195bbcded58af16d59ee2179068eb58e729e3e7460a57ae06e832d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b25e217c028a46559ae7f7131944d16ca36bba80c8be47f05602e8a7091ef828
MD5 78813dde416d21b1105b4801fe4fa93e
BLAKE2b-256 e06b3f551551e6dedee54d27ae0c6f4ab9e188f32675400d2c4036e2a451108c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5953bde93877ce528398ff1c17cd93ca35134506401b974cc433c1d6215136cb
MD5 88e635390230b0734e56accc5ba057a6
BLAKE2b-256 5383ec30902e70c84dc4e1bb496c344f15955bdf003d5f628bd12324463618ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75281a04df07e886812151162eda2c8fce51fbc8d94f75d05bdca964892e82d1
MD5 01f15543c868c89662bba2760438184a
BLAKE2b-256 481db20ec51296f389f5baddcfb05c88c2d236c9b8aebe1de37a602effe4412b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b55489837f9556f3255b50d4065551ed5c27160b70d9c9c334bcd27a3f77e95
MD5 7ad630eb87a0fc1f275653ac8488e90e
BLAKE2b-256 88f0b424f1d3839deee03fa716c73fec1754915ad45c73eaf2e76ef8c4e27dd0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1720c2313b191072b7286145e84389f1096ff7b501ffaab19aa5d89f9e9568a1
MD5 c8c63e152f9cf9867f98a8372df5bbff
BLAKE2b-256 0f252e31d6c916bd2933747e538d4eecd3817afe1a0c183d048c3768ca5f8dcf

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0d52cafccc5cf6d6159f91e0143fb5936c2eb54962cdd36751bf1d50b121738d
MD5 7695a84faea922107e54c61021e34ff1
BLAKE2b-256 30bb077aa018e8177598541d32d7bffaf0f1f0fd4135a574905cda08a4ac75d2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f7a9e9e7adfdc8099384bcda22648231f58cf611c55a0568338db7581ace29c4
MD5 06ed4b2bfb9386c56d0d33ba97f5420a
BLAKE2b-256 3fab00e37aa8bf02bd9181e6b783a0df8f1e6ec08a51c29d6aad3ccd2405e128

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fd0edd9d68c5686b8dce2e61f65807c8a30be43f05751ff438eab0f05f1fd4b
MD5 0b2d89665f135910a241ca8c7e3596d6
BLAKE2b-256 58e8aa0017a80ea77a9814c20598c2f650dd1f3764e5bcc30b16c966dcc74205

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21675541a5fa7070747f05607dc5b55bae6c407f2198b225a6c1d62321d4a2cf
MD5 bce5f86814b2059b1aa65588672883de
BLAKE2b-256 6a88578484c5bc141add8a4fe0a67eadd95766a9d301c2a2aa5907c44cb91a01

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d050a49e25f8d7c0ad4b063418a74fb6c0c6be860b10b14f6cbb57b077a17e3
MD5 e62afbe3e54393837fb865b33880b823
BLAKE2b-256 c1b66c7f4d8b21787e75fee6d2e42b3572a2129408c4d5f97d73cf4f5054aab0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 914a8461a3e2edd5f7ea927086635fa667acebf97172c18318bad158ebee942c
MD5 ecf86c41ec25dc75237c626c83816fc7
BLAKE2b-256 0232396fc736864138ef7a65bc51d4bd8ce743a2128a49c5fdb1808c3d6d3879

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 612e475e8d73e4e63294817e03a2bcdd77655786b14479d9c28570c59a5da52c
MD5 fd13a58e7737746e326c5fe4ee93efad
BLAKE2b-256 23e156bd082492512bab45ae662beec5707617c7a462b86ec29e42348b3367a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1680de201cb56716c326b413646c7195debe68416e85a8ba39f2079aa17d8423
MD5 61405557b9be2f99480189ec847b2267
BLAKE2b-256 47043f9ea1c7f8a72c8fc19fc10f4a86a8ec09ad76b2422374999dddb6953bdf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee204d8d9dd06a0078f0e1015da4f1621c4e007b6124e41f968fb50e683e32eb
MD5 7de220de15f38d5e2c3c700cd225363e
BLAKE2b-256 8965eefa6274556e631c057deeb0e50d4a3ac85e23be1a0e03383d3bc080f007

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c69a9c9bc7b917fcc250c7e20443f52d258da7d4654ebc200bd250e1cfc5466
MD5 21e8a6e14b8e2a0533828e76c9a3a89b
BLAKE2b-256 1e2915e1f0d2a8c2bf2a81d8743a07ebac32c0c7da1c9e7124e744f98b16a927

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 513d70f388ef8a6b88eacd9b19273d1f8a4c8716f8aad8939cb62972912d2587
MD5 fda50ae3ad5c2b59464df0f78ac2947e
BLAKE2b-256 81494869ee0912a938114a460947bd07f75b6037a0cdcb81c798f47be2dd8c9e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8516173e6cdddb6211ae37b3aeaa9cfc4a2ba09b570469cd75bf5e5ba7c06667
MD5 3715c3fb0c22443508f93a3fab37360b
BLAKE2b-256 afb3947994f96889ea7d9f3cc2b7431150e0f5e48de1c5d9aeec5f5f696b2e64

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da38e1a79daa73ee8aa933d7a6a0edb98bb0626c1819018e9b9a21dcdd90eaaf
MD5 c496756baea6ec07195fcc8e89c2739b
BLAKE2b-256 563f990728f6a876f03ee43a1d9c75bb2ef9111b9325df0110ae0ec77ed8146d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9288699d3852461dae58c53380b08a5b041b5998bac42764478969e675ac6eb2
MD5 22a718e7c0a87851571d49fbd7f5d42c
BLAKE2b-256 f223e21e0fb022286e9fb07ce9421215908579188519622740a85e2f45e89b48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02631c4e88bdf37dfc347354d075d236eea71447eb117ef218a5c884a02ec513
MD5 1d37920d226ea48d14efe57f8453c750
BLAKE2b-256 f88cd29ce8a8a9e154d24781ac0b0053a04fdd9c028fededbd0e3a26ab0742b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c46d1ccf0dac968e9b68e01cec399b9f75e7190b0692a374e38e235434fb7a94
MD5 c0a135d11d7f6c8ff04559ac5f706a87
BLAKE2b-256 c06ad4ea2c1b9c9276ef628d244855da1de87769a45013835ad82c3afd89f347

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54c212eb133e735cf6d836e0952ec74a903312cefdec32734291a41d6cd626f5
MD5 c55500ae9a25df57e6405d0f159fa608
BLAKE2b-256 57e9ee8d778d02f8d0bf512c09f65624dd8ddd3067120871ae6d563a7fc6533c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e1de6104cd3ad110a9042972efbca78ef1693a5606728df1e160ca03fd619a2
MD5 efca8b8cc79c50a178934e047769733d
BLAKE2b-256 3144c92caa19efe8447227cd08c0bce4a83869562f9c23014ce6d610081da99c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f91072d4e7a1c01cce68ae15a6548eb0a1bec817486453976461e8196a569cd6
MD5 f71ea6619af2dca155fdd0ded3cf7a82
BLAKE2b-256 d1c83b76aed24c4eff106be4c0aec168e93320c567014e4fb30fc4bb7ce67222

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cba5082c753661e84689400a80c265ce421983bcc261342cab9ca2de5dba4c64
MD5 78d2f293035700cf07b837d6b90eebf4
BLAKE2b-256 e2a2b50c9e5e2d9377e225334b3a71b668bb1f83ad9da81d35d521dce50d7c67

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0694ecb476e8479988e395d87b076507cc6bbf17f71327ab6d88d5e78448727d
MD5 43463b6fb45d1fd99376f7d38d6910b6
BLAKE2b-256 55d0e82af7883515ac80face10182a1a470a81a98948ff596789a7627fa39e24

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 02d8f3db862818239a3d63cbb8d885159dc8ad5100ea0e7d6cdda7e95e4735a2
MD5 abfd937904b59df8b5a320c748d138e0
BLAKE2b-256 702ba4a282c9dd0e63009f12dd81048e68cb74dc992329bbb912d612a6e8a5f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3aa970f1c0c8ca1733697c947c7bdc8e2662d103f1092e912c65c4f6d79961a5
MD5 2e1c90149d2225dd06a66ff55ee057c8
BLAKE2b-256 8fbb2ed2bce8c06674cc12d49ce1dd90b29b4f2f63f16978fec994899d69ae60

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e709d552070a28bb5d11010f6940033ac31b5cd1463311401e638496d76f26df
MD5 597ec248b957d93085a0aec71404e145
BLAKE2b-256 40d09e652215664368d7f9cd70982c03d57dcf3e1c2bc7098b505baf69184056

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e3f34e42efd90aa1dcca74bbfb0138e9fcdfe4496b3ef52ce00a492522ca23e
MD5 7af0b17e898e2308b514336202d919d1
BLAKE2b-256 0db8fd6bcee4be0e8d368752fd2bc4f02e5d9116d7db59744ecd87acd74a0778

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24bcf2a8d2720116092cd410e50505c315318fc58964ed3432dc37db554dc017
MD5 5c613741c2ff1fc638d8f84af79a80aa
BLAKE2b-256 49a19b1704ca4ebba69dca31fcd10e1668fb79c372e96e1325cab8cdd53e7d68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a0f27548ee7b09e8252a3e995b75c723cec9aa8996d4ecbadec78a16deebd1e
MD5 27d67c03a677963ae69ccbddc45555ea
BLAKE2b-256 ec2d8fd2019ad7830b61d3383019bf09d9a204e8d6516d47f5dc5447a94613de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 069051f5de124e4b3e67ecc72e94d74b30858dcbd688a63e6113a8b8526d83dc
MD5 3e435d265e1ba183259835972fe35096
BLAKE2b-256 e82baa0c883b695b7c3c791a058212caba0d985dbba83558ccbf28db28c8dbfe

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 8403e004f8c65c33e33110bd19e285da61468adb26d3654aeb434b98046f1a67
MD5 5b5ee17e5863fda189abea96d617cade
BLAKE2b-256 44d75f98b8e53cc1f275633fe8d45f88746131624895b3734a938d2c8c9c0514

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for dwat-0.6.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0c46df4fe8d799e494513ca630ceecdc194c9d23b981f3e9281ae4ca8a3a5d24
MD5 f3c46756cbea2ee89fee061c3f7f3526
BLAKE2b-256 fbf16491f4da885f31869021b8cf4427ec7f0813e5bec180c2191a8601b3d321

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 312c8f1f82d95d75c459abb98663c432b99dbe7daf010174499192a8470a0fe2
MD5 41ab419fa4b53aad172d10a34ffcca45
BLAKE2b-256 068f8ad3e86c444da59ba73ca2a5efd689acdc093613dd3b15d580c794d2ddc1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea1ba4ca153d79633159e95b91b948be2da411c2028dd8442913b882031e16e8
MD5 591b61451de358cd29d668fc875625d1
BLAKE2b-256 6d6621ff4ddd9382de7656f964fee0bd6f14fb5e0ed7e23f496637d1b199c7c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88f3564ff7efc464d76c85f414857f396a66b8a5ca012da56e53fb9a4758ad5e
MD5 16e25e9f61f6fc4b6607f6b8c4a56aba
BLAKE2b-256 1e1a1773acaacff4a795a790c059e22a398d990e1f62ceca091df9200a967811

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58d8e6a1cadcd1eb692f91f7f5c6aacfb52c0dd6554987175159c47ace12a55b
MD5 c54ae71332fb1999aef35cc4ed5b163b
BLAKE2b-256 311020d7ec7ddb2d426782e4249b60915b85ff4934b1a030e6c1552e69ea4844

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e67a913055eeccc99c3147babfd5d9b893f24ffdabff6b8e986d7ec98751af99
MD5 41d2e569f22a698aba848ff3d6e9f592
BLAKE2b-256 19c5d054f7837a17d6c045f9bc10c1e19d6fc209a5547e4d2278a2d651ee00f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for dwat-0.6.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b73c3ffb7411f4227035a51bbd87ae24cb971f2d54268d3da225258b2911a1ae
MD5 31d8f2fe31a1d8f0c8d28ba549866c80
BLAKE2b-256 e2e7195b3bcd218e4107ec5f0dc77ff6905ef98b2e5ec74bb4b3747224a641c7

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