dwat


Namedwat JSON
Version 0.6.4 PyPI version JSON
download
home_pagehttps://github.com/zolutal/dwat
SummaryLibrary for accessing DWARF debug information
upload_time2024-03-25 00:23:23
maintainerNone
docs_urlNone
authorJustin Miller
requires_python>=3.8
licenseBSD-2-Clause
keywords elf debug dwarf
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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`:

```rust
    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:

```rust
    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.

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

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

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


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zolutal/dwat",
    "name": "dwat",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "elf, debug, dwarf",
    "author": "Justin Miller",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/9c/69/f0b06228a3fa1a4ecf26d70bb371a662435f004c5026d943dbc38cfb0672/dwat-0.6.4.tar.gz",
    "platform": null,
    "description": "# dwat\n\nA fairly performant library intended to make DWARF (v4/v5) debugging information more accessible.\n\nMy 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.\n\n**Current Features**:\n- Get a list of types by name\n- Get a map of types by name\n- Lookup types by name\n- Formating of parsed struct and union information to C-style definitions\n- Get members of structs/unions\n- Get underlying types of modifiers (volatile/const/etc...)\n- Get byte size information for types\n- Get bit sizes for bit field struct members\n\n# CLI\n\nThough `dwat` is primarily meant to be a library, a basic cli is included:\n\n```\nUsage: dwat <COMMAND>\n\nCommands:\n  lookup  Find and display a single struct\n  dump    Find and display all structs\n  help    Print this message or the help of the given subcommand(s)\n\nOptions:\n  -h, --help  Print help\n```\n\n# Python bindings\n\n`dwat` has python bindings! The documentation can be found here: https://zolutal.github.io/dwat/\n\n# Examples\n\nThere are several examples in the `examples` directory that are worth checking out.\n\n# Usage\n\nThe first step of using the library is to load the file containing DWARF info into memory, then invoke `Dwarf::load`:\n\n```rust\n    let file = File::open(path)?;\n    let mmap = unsafe { Mmap::map(&file) }?;\n\n    let dwarf = Dwarf::load(&*mmap)?;\n```\n\nThe 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:\n\n```rust\n    let found = dwarf.lookup_type::<dwat::Struct>(struct_name)?;\n```\n\nStruct members can then be retrieved by calling `.members()` which returns a Vector of `Member` structs.\n\n```rust\n    let members = struc.members(&dwarf)?;\n```\n\nA struct object can be converted to a C-style definition String by invoking the `to_string` function:\n\n```rust\n    if let Some(found) = found {\n        println!(\"{}\", found.to_string(&dwarf)?);\n    }\n```\n\n",
    "bugtrack_url": null,
    "license": "BSD-2-Clause",
    "summary": "Library for accessing DWARF debug information",
    "version": "0.6.4",
    "project_urls": {
        "Documentation": "https://zolutal.github.io/dwat/",
        "Homepage": "https://github.com/zolutal/dwat",
        "Repository": "https://github.com/zolutal/dwat"
    },
    "split_keywords": [
        "elf",
        " debug",
        " dwarf"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2a2b50c9e5e2d9377e225334b3a71b668bb1f83ad9da81d35d521dce50d7c67",
                "md5": "78d2f293035700cf07b837d6b90eebf4",
                "sha256": "cba5082c753661e84689400a80c265ce421983bcc261342cab9ca2de5dba4c64"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "78d2f293035700cf07b837d6b90eebf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 387057,
            "upload_time": "2024-03-25T00:21:29",
            "upload_time_iso_8601": "2024-03-25T00:21:29.998607Z",
            "url": "https://files.pythonhosted.org/packages/e2/a2/b50c9e5e2d9377e225334b3a71b668bb1f83ad9da81d35d521dce50d7c67/dwat-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1c83b76aed24c4eff106be4c0aec168e93320c567014e4fb30fc4bb7ce67222",
                "md5": "f71ea6619af2dca155fdd0ded3cf7a82",
                "sha256": "f91072d4e7a1c01cce68ae15a6548eb0a1bec817486453976461e8196a569cd6"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f71ea6619af2dca155fdd0ded3cf7a82",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 367447,
            "upload_time": "2024-03-25T00:21:31",
            "upload_time_iso_8601": "2024-03-25T00:21:31.885445Z",
            "url": "https://files.pythonhosted.org/packages/d1/c8/3b76aed24c4eff106be4c0aec168e93320c567014e4fb30fc4bb7ce67222/dwat-0.6.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57e9ee8d778d02f8d0bf512c09f65624dd8ddd3067120871ae6d563a7fc6533c",
                "md5": "c55500ae9a25df57e6405d0f159fa608",
                "sha256": "54c212eb133e735cf6d836e0952ec74a903312cefdec32734291a41d6cd626f5"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c55500ae9a25df57e6405d0f159fa608",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 733699,
            "upload_time": "2024-03-25T00:21:33",
            "upload_time_iso_8601": "2024-03-25T00:21:33.776977Z",
            "url": "https://files.pythonhosted.org/packages/57/e9/ee8d778d02f8d0bf512c09f65624dd8ddd3067120871ae6d563a7fc6533c/dwat-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c06ad4ea2c1b9c9276ef628d244855da1de87769a45013835ad82c3afd89f347",
                "md5": "c0a135d11d7f6c8ff04559ac5f706a87",
                "sha256": "c46d1ccf0dac968e9b68e01cec399b9f75e7190b0692a374e38e235434fb7a94"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c0a135d11d7f6c8ff04559ac5f706a87",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 767292,
            "upload_time": "2024-03-25T00:21:35",
            "upload_time_iso_8601": "2024-03-25T00:21:35.320978Z",
            "url": "https://files.pythonhosted.org/packages/c0/6a/d4ea2c1b9c9276ef628d244855da1de87769a45013835ad82c3afd89f347/dwat-0.6.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f88cd29ce8a8a9e154d24781ac0b0053a04fdd9c028fededbd0e3a26ab0742b8",
                "md5": "1d37920d226ea48d14efe57f8453c750",
                "sha256": "02631c4e88bdf37dfc347354d075d236eea71447eb117ef218a5c884a02ec513"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1d37920d226ea48d14efe57f8453c750",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 753968,
            "upload_time": "2024-03-25T00:21:36",
            "upload_time_iso_8601": "2024-03-25T00:21:36.840005Z",
            "url": "https://files.pythonhosted.org/packages/f8/8c/d29ce8a8a9e154d24781ac0b0053a04fdd9c028fededbd0e3a26ab0742b8/dwat-0.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f223e21e0fb022286e9fb07ce9421215908579188519622740a85e2f45e89b48",
                "md5": "22a718e7c0a87851571d49fbd7f5d42c",
                "sha256": "9288699d3852461dae58c53380b08a5b041b5998bac42764478969e675ac6eb2"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "22a718e7c0a87851571d49fbd7f5d42c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1008458,
            "upload_time": "2024-03-25T00:21:38",
            "upload_time_iso_8601": "2024-03-25T00:21:38.245616Z",
            "url": "https://files.pythonhosted.org/packages/f2/23/e21e0fb022286e9fb07ce9421215908579188519622740a85e2f45e89b48/dwat-0.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "563f990728f6a876f03ee43a1d9c75bb2ef9111b9325df0110ae0ec77ed8146d",
                "md5": "c496756baea6ec07195fcc8e89c2739b",
                "sha256": "da38e1a79daa73ee8aa933d7a6a0edb98bb0626c1819018e9b9a21dcdd90eaaf"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c496756baea6ec07195fcc8e89c2739b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 736135,
            "upload_time": "2024-03-25T00:21:40",
            "upload_time_iso_8601": "2024-03-25T00:21:40.294912Z",
            "url": "https://files.pythonhosted.org/packages/56/3f/990728f6a876f03ee43a1d9c75bb2ef9111b9325df0110ae0ec77ed8146d/dwat-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3144c92caa19efe8447227cd08c0bce4a83869562f9c23014ce6d610081da99c",
                "md5": "efca8b8cc79c50a178934e047769733d",
                "sha256": "9e1de6104cd3ad110a9042972efbca78ef1693a5606728df1e160ca03fd619a2"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "efca8b8cc79c50a178934e047769733d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 763386,
            "upload_time": "2024-03-25T00:21:42",
            "upload_time_iso_8601": "2024-03-25T00:21:42.189245Z",
            "url": "https://files.pythonhosted.org/packages/31/44/c92caa19efe8447227cd08c0bce4a83869562f9c23014ce6d610081da99c/dwat-0.6.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afb3947994f96889ea7d9f3cc2b7431150e0f5e48de1c5d9aeec5f5f696b2e64",
                "md5": "3715c3fb0c22443508f93a3fab37360b",
                "sha256": "8516173e6cdddb6211ae37b3aeaa9cfc4a2ba09b570469cd75bf5e5ba7c06667"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3715c3fb0c22443508f93a3fab37360b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 264490,
            "upload_time": "2024-03-25T00:21:44",
            "upload_time_iso_8601": "2024-03-25T00:21:44.043903Z",
            "url": "https://files.pythonhosted.org/packages/af/b3/947994f96889ea7d9f3cc2b7431150e0f5e48de1c5d9aeec5f5f696b2e64/dwat-0.6.4-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81494869ee0912a938114a460947bd07f75b6037a0cdcb81c798f47be2dd8c9e",
                "md5": "fda50ae3ad5c2b59464df0f78ac2947e",
                "sha256": "513d70f388ef8a6b88eacd9b19273d1f8a4c8716f8aad8939cb62972912d2587"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fda50ae3ad5c2b59464df0f78ac2947e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 271213,
            "upload_time": "2024-03-25T00:21:45",
            "upload_time_iso_8601": "2024-03-25T00:21:45.425700Z",
            "url": "https://files.pythonhosted.org/packages/81/49/4869ee0912a938114a460947bd07f75b6037a0cdcb81c798f47be2dd8c9e/dwat-0.6.4-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e2915e1f0d2a8c2bf2a81d8743a07ebac32c0c7da1c9e7124e744f98b16a927",
                "md5": "21e8a6e14b8e2a0533828e76c9a3a89b",
                "sha256": "4c69a9c9bc7b917fcc250c7e20443f52d258da7d4654ebc200bd250e1cfc5466"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21e8a6e14b8e2a0533828e76c9a3a89b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 387127,
            "upload_time": "2024-03-25T00:21:47",
            "upload_time_iso_8601": "2024-03-25T00:21:47.335243Z",
            "url": "https://files.pythonhosted.org/packages/1e/29/15e1f0d2a8c2bf2a81d8743a07ebac32c0c7da1c9e7124e744f98b16a927/dwat-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8965eefa6274556e631c057deeb0e50d4a3ac85e23be1a0e03383d3bc080f007",
                "md5": "7de220de15f38d5e2c3c700cd225363e",
                "sha256": "ee204d8d9dd06a0078f0e1015da4f1621c4e007b6124e41f968fb50e683e32eb"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7de220de15f38d5e2c3c700cd225363e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 367419,
            "upload_time": "2024-03-25T00:21:49",
            "upload_time_iso_8601": "2024-03-25T00:21:49.166056Z",
            "url": "https://files.pythonhosted.org/packages/89/65/eefa6274556e631c057deeb0e50d4a3ac85e23be1a0e03383d3bc080f007/dwat-0.6.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23e156bd082492512bab45ae662beec5707617c7a462b86ec29e42348b3367a5",
                "md5": "fd13a58e7737746e326c5fe4ee93efad",
                "sha256": "612e475e8d73e4e63294817e03a2bcdd77655786b14479d9c28570c59a5da52c"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fd13a58e7737746e326c5fe4ee93efad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 733734,
            "upload_time": "2024-03-25T00:21:51",
            "upload_time_iso_8601": "2024-03-25T00:21:51.023626Z",
            "url": "https://files.pythonhosted.org/packages/23/e1/56bd082492512bab45ae662beec5707617c7a462b86ec29e42348b3367a5/dwat-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0232396fc736864138ef7a65bc51d4bd8ce743a2128a49c5fdb1808c3d6d3879",
                "md5": "ecf86c41ec25dc75237c626c83816fc7",
                "sha256": "914a8461a3e2edd5f7ea927086635fa667acebf97172c18318bad158ebee942c"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ecf86c41ec25dc75237c626c83816fc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 767472,
            "upload_time": "2024-03-25T00:21:52",
            "upload_time_iso_8601": "2024-03-25T00:21:52.375821Z",
            "url": "https://files.pythonhosted.org/packages/02/32/396fc736864138ef7a65bc51d4bd8ce743a2128a49c5fdb1808c3d6d3879/dwat-0.6.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1b66c7f4d8b21787e75fee6d2e42b3572a2129408c4d5f97d73cf4f5054aab0",
                "md5": "e62afbe3e54393837fb865b33880b823",
                "sha256": "1d050a49e25f8d7c0ad4b063418a74fb6c0c6be860b10b14f6cbb57b077a17e3"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e62afbe3e54393837fb865b33880b823",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 753965,
            "upload_time": "2024-03-25T00:21:53",
            "upload_time_iso_8601": "2024-03-25T00:21:53.968431Z",
            "url": "https://files.pythonhosted.org/packages/c1/b6/6c7f4d8b21787e75fee6d2e42b3572a2129408c4d5f97d73cf4f5054aab0/dwat-0.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a88578484c5bc141add8a4fe0a67eadd95766a9d301c2a2aa5907c44cb91a01",
                "md5": "bce5f86814b2059b1aa65588672883de",
                "sha256": "21675541a5fa7070747f05607dc5b55bae6c407f2198b225a6c1d62321d4a2cf"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bce5f86814b2059b1aa65588672883de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1008422,
            "upload_time": "2024-03-25T00:21:55",
            "upload_time_iso_8601": "2024-03-25T00:21:55.550194Z",
            "url": "https://files.pythonhosted.org/packages/6a/88/578484c5bc141add8a4fe0a67eadd95766a9d301c2a2aa5907c44cb91a01/dwat-0.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58e8aa0017a80ea77a9814c20598c2f650dd1f3764e5bcc30b16c966dcc74205",
                "md5": "0b2d89665f135910a241ca8c7e3596d6",
                "sha256": "6fd0edd9d68c5686b8dce2e61f65807c8a30be43f05751ff438eab0f05f1fd4b"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b2d89665f135910a241ca8c7e3596d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 736141,
            "upload_time": "2024-03-25T00:21:57",
            "upload_time_iso_8601": "2024-03-25T00:21:57.009930Z",
            "url": "https://files.pythonhosted.org/packages/58/e8/aa0017a80ea77a9814c20598c2f650dd1f3764e5bcc30b16c966dcc74205/dwat-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47043f9ea1c7f8a72c8fc19fc10f4a86a8ec09ad76b2422374999dddb6953bdf",
                "md5": "61405557b9be2f99480189ec847b2267",
                "sha256": "1680de201cb56716c326b413646c7195debe68416e85a8ba39f2079aa17d8423"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "61405557b9be2f99480189ec847b2267",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 763436,
            "upload_time": "2024-03-25T00:21:58",
            "upload_time_iso_8601": "2024-03-25T00:21:58.775784Z",
            "url": "https://files.pythonhosted.org/packages/47/04/3f9ea1c7f8a72c8fc19fc10f4a86a8ec09ad76b2422374999dddb6953bdf/dwat-0.6.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3fab00e37aa8bf02bd9181e6b783a0df8f1e6ec08a51c29d6aad3ccd2405e128",
                "md5": "06ed4b2bfb9386c56d0d33ba97f5420a",
                "sha256": "f7a9e9e7adfdc8099384bcda22648231f58cf611c55a0568338db7581ace29c4"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "06ed4b2bfb9386c56d0d33ba97f5420a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 264485,
            "upload_time": "2024-03-25T00:22:00",
            "upload_time_iso_8601": "2024-03-25T00:22:00.191464Z",
            "url": "https://files.pythonhosted.org/packages/3f/ab/00e37aa8bf02bd9181e6b783a0df8f1e6ec08a51c29d6aad3ccd2405e128/dwat-0.6.4-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30bb077aa018e8177598541d32d7bffaf0f1f0fd4135a574905cda08a4ac75d2",
                "md5": "7695a84faea922107e54c61021e34ff1",
                "sha256": "0d52cafccc5cf6d6159f91e0143fb5936c2eb54962cdd36751bf1d50b121738d"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7695a84faea922107e54c61021e34ff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 271179,
            "upload_time": "2024-03-25T00:22:01",
            "upload_time_iso_8601": "2024-03-25T00:22:01.576240Z",
            "url": "https://files.pythonhosted.org/packages/30/bb/077aa018e8177598541d32d7bffaf0f1f0fd4135a574905cda08a4ac75d2/dwat-0.6.4-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f252e31d6c916bd2933747e538d4eecd3817afe1a0c183d048c3768ca5f8dcf",
                "md5": "c8c63e152f9cf9867f98a8372df5bbff",
                "sha256": "1720c2313b191072b7286145e84389f1096ff7b501ffaab19aa5d89f9e9568a1"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8c63e152f9cf9867f98a8372df5bbff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 392578,
            "upload_time": "2024-03-25T00:22:02",
            "upload_time_iso_8601": "2024-03-25T00:22:02.875905Z",
            "url": "https://files.pythonhosted.org/packages/0f/25/2e31d6c916bd2933747e538d4eecd3817afe1a0c183d048c3768ca5f8dcf/dwat-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88f0b424f1d3839deee03fa716c73fec1754915ad45c73eaf2e76ef8c4e27dd0",
                "md5": "7ad630eb87a0fc1f275653ac8488e90e",
                "sha256": "0b55489837f9556f3255b50d4065551ed5c27160b70d9c9c334bcd27a3f77e95"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7ad630eb87a0fc1f275653ac8488e90e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 374631,
            "upload_time": "2024-03-25T00:22:04",
            "upload_time_iso_8601": "2024-03-25T00:22:04.211160Z",
            "url": "https://files.pythonhosted.org/packages/88/f0/b424f1d3839deee03fa716c73fec1754915ad45c73eaf2e76ef8c4e27dd0/dwat-0.6.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5383ec30902e70c84dc4e1bb496c344f15955bdf003d5f628bd12324463618ce",
                "md5": "88e635390230b0734e56accc5ba057a6",
                "sha256": "5953bde93877ce528398ff1c17cd93ca35134506401b974cc433c1d6215136cb"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "88e635390230b0734e56accc5ba057a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 735452,
            "upload_time": "2024-03-25T00:22:06",
            "upload_time_iso_8601": "2024-03-25T00:22:06.324186Z",
            "url": "https://files.pythonhosted.org/packages/53/83/ec30902e70c84dc4e1bb496c344f15955bdf003d5f628bd12324463618ce/dwat-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e06b3f551551e6dedee54d27ae0c6f4ab9e188f32675400d2c4036e2a451108c",
                "md5": "78813dde416d21b1105b4801fe4fa93e",
                "sha256": "b25e217c028a46559ae7f7131944d16ca36bba80c8be47f05602e8a7091ef828"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "78813dde416d21b1105b4801fe4fa93e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 769652,
            "upload_time": "2024-03-25T00:22:08",
            "upload_time_iso_8601": "2024-03-25T00:22:08.036885Z",
            "url": "https://files.pythonhosted.org/packages/e0/6b/3f551551e6dedee54d27ae0c6f4ab9e188f32675400d2c4036e2a451108c/dwat-0.6.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fed67286195bbcded58af16d59ee2179068eb58e729e3e7460a57ae06e832d7",
                "md5": "2000a43bd2c141dfe64ae164658555a8",
                "sha256": "5fbf75a6cfa23b290a0c0b397ec58093eb9f49d2f7eb71d18de87ab4ff80faad"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2000a43bd2c141dfe64ae164658555a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 756164,
            "upload_time": "2024-03-25T00:22:10",
            "upload_time_iso_8601": "2024-03-25T00:22:10.619059Z",
            "url": "https://files.pythonhosted.org/packages/8f/ed/67286195bbcded58af16d59ee2179068eb58e729e3e7460a57ae06e832d7/dwat-0.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ece343f6c4a3bd48254ea208d9692da85079719a54bc7be6b06a6bd32908a939",
                "md5": "4df9f98a5c2b4e75019440de5061b103",
                "sha256": "334726bde9bd44cac0956a7389e9b470af623b6ef2ca19685ec2acec28004e35"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4df9f98a5c2b4e75019440de5061b103",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 988175,
            "upload_time": "2024-03-25T00:22:12",
            "upload_time_iso_8601": "2024-03-25T00:22:12.305001Z",
            "url": "https://files.pythonhosted.org/packages/ec/e3/43f6c4a3bd48254ea208d9692da85079719a54bc7be6b06a6bd32908a939/dwat-0.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd4ef3c0972366c8b90dc3748f1fafb5d54bee82f4cf40adb27c45abb1e5ac31",
                "md5": "7c04a26277a577b00fb5e3c5809c33dc",
                "sha256": "b10d5872beba2e105ac8941522ddfba8ce1230f32a8c297a56d3c31c05468356"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c04a26277a577b00fb5e3c5809c33dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 739405,
            "upload_time": "2024-03-25T00:22:13",
            "upload_time_iso_8601": "2024-03-25T00:22:13.847465Z",
            "url": "https://files.pythonhosted.org/packages/dd/4e/f3c0972366c8b90dc3748f1fafb5d54bee82f4cf40adb27c45abb1e5ac31/dwat-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "481db20ec51296f389f5baddcfb05c88c2d236c9b8aebe1de37a602effe4412b",
                "md5": "01f15543c868c89662bba2760438184a",
                "sha256": "75281a04df07e886812151162eda2c8fce51fbc8d94f75d05bdca964892e82d1"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "01f15543c868c89662bba2760438184a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 764437,
            "upload_time": "2024-03-25T00:22:15",
            "upload_time_iso_8601": "2024-03-25T00:22:15.678765Z",
            "url": "https://files.pythonhosted.org/packages/48/1d/b20ec51296f389f5baddcfb05c88c2d236c9b8aebe1de37a602effe4412b/dwat-0.6.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "633ffa495ad89657c846a886bfb53c1800048c6b26b4f87348354b25be2aadff",
                "md5": "4fa5ed5eed3815ee91c681d295734a15",
                "sha256": "f7bc412ba6372445c4d74091e6866267f759c4ddf94d189d000c715551c2f0f1"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4fa5ed5eed3815ee91c681d295734a15",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 267672,
            "upload_time": "2024-03-25T00:22:17",
            "upload_time_iso_8601": "2024-03-25T00:22:17.642952Z",
            "url": "https://files.pythonhosted.org/packages/63/3f/fa495ad89657c846a886bfb53c1800048c6b26b4f87348354b25be2aadff/dwat-0.6.4-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "927845a5adeb20c7c524ad4170537448f21d8705e16ce0e96ee240e301bdde17",
                "md5": "ecd1929ef0573256668aa369fce67af3",
                "sha256": "1a08dfbfdd19c20860fb3244bc85d1f898b5af740615e9ed31a539722fe851e5"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ecd1929ef0573256668aa369fce67af3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 276785,
            "upload_time": "2024-03-25T00:22:19",
            "upload_time_iso_8601": "2024-03-25T00:22:19.094561Z",
            "url": "https://files.pythonhosted.org/packages/92/78/45a5adeb20c7c524ad4170537448f21d8705e16ce0e96ee240e301bdde17/dwat-0.6.4-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19c5d054f7837a17d6c045f9bc10c1e19d6fc209a5547e4d2278a2d651ee00f5",
                "md5": "41d2e569f22a698aba848ff3d6e9f592",
                "sha256": "e67a913055eeccc99c3147babfd5d9b893f24ffdabff6b8e986d7ec98751af99"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "41d2e569f22a698aba848ff3d6e9f592",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 734094,
            "upload_time": "2024-03-25T00:22:20",
            "upload_time_iso_8601": "2024-03-25T00:22:20.948487Z",
            "url": "https://files.pythonhosted.org/packages/19/c5/d054f7837a17d6c045f9bc10c1e19d6fc209a5547e4d2278a2d651ee00f5/dwat-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "311020d7ec7ddb2d426782e4249b60915b85ff4934b1a030e6c1552e69ea4844",
                "md5": "c54ae71332fb1999aef35cc4ed5b163b",
                "sha256": "58d8e6a1cadcd1eb692f91f7f5c6aacfb52c0dd6554987175159c47ace12a55b"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c54ae71332fb1999aef35cc4ed5b163b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 768790,
            "upload_time": "2024-03-25T00:22:22",
            "upload_time_iso_8601": "2024-03-25T00:22:22.362292Z",
            "url": "https://files.pythonhosted.org/packages/31/10/20d7ec7ddb2d426782e4249b60915b85ff4934b1a030e6c1552e69ea4844/dwat-0.6.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e1a1773acaacff4a795a790c059e22a398d990e1f62ceca091df9200a967811",
                "md5": "16e25e9f61f6fc4b6607f6b8c4a56aba",
                "sha256": "88f3564ff7efc464d76c85f414857f396a66b8a5ca012da56e53fb9a4758ad5e"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "16e25e9f61f6fc4b6607f6b8c4a56aba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 754725,
            "upload_time": "2024-03-25T00:22:23",
            "upload_time_iso_8601": "2024-03-25T00:22:23.717243Z",
            "url": "https://files.pythonhosted.org/packages/1e/1a/1773acaacff4a795a790c059e22a398d990e1f62ceca091df9200a967811/dwat-0.6.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d6621ff4ddd9382de7656f964fee0bd6f14fb5e0ed7e23f496637d1b199c7c5",
                "md5": "591b61451de358cd29d668fc875625d1",
                "sha256": "ea1ba4ca153d79633159e95b91b948be2da411c2028dd8442913b882031e16e8"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "591b61451de358cd29d668fc875625d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1008751,
            "upload_time": "2024-03-25T00:22:26",
            "upload_time_iso_8601": "2024-03-25T00:22:26.117556Z",
            "url": "https://files.pythonhosted.org/packages/6d/66/21ff4ddd9382de7656f964fee0bd6f14fb5e0ed7e23f496637d1b199c7c5/dwat-0.6.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "068f8ad3e86c444da59ba73ca2a5efd689acdc093613dd3b15d580c794d2ddc1",
                "md5": "41ab419fa4b53aad172d10a34ffcca45",
                "sha256": "312c8f1f82d95d75c459abb98663c432b99dbe7daf010174499192a8470a0fe2"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41ab419fa4b53aad172d10a34ffcca45",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 736966,
            "upload_time": "2024-03-25T00:22:27",
            "upload_time_iso_8601": "2024-03-25T00:22:27.641352Z",
            "url": "https://files.pythonhosted.org/packages/06/8f/8ad3e86c444da59ba73ca2a5efd689acdc093613dd3b15d580c794d2ddc1/dwat-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2e7195b3bcd218e4107ec5f0dc77ff6905ef98b2e5ec74bb4b3747224a641c7",
                "md5": "31d8f2fe31a1d8f0c8d28ba549866c80",
                "sha256": "b73c3ffb7411f4227035a51bbd87ae24cb971f2d54268d3da225258b2911a1ae"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "31d8f2fe31a1d8f0c8d28ba549866c80",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 764001,
            "upload_time": "2024-03-25T00:22:29",
            "upload_time_iso_8601": "2024-03-25T00:22:29.507204Z",
            "url": "https://files.pythonhosted.org/packages/e2/e7/195b3bcd218e4107ec5f0dc77ff6905ef98b2e5ec74bb4b3747224a641c7/dwat-0.6.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbf16491f4da885f31869021b8cf4427ec7f0813e5bec180c2191a8601b3d321",
                "md5": "f3c46756cbea2ee89fee061c3f7f3526",
                "sha256": "0c46df4fe8d799e494513ca630ceecdc194c9d23b981f3e9281ae4ca8a3a5d24"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f3c46756cbea2ee89fee061c3f7f3526",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 264814,
            "upload_time": "2024-03-25T00:22:31",
            "upload_time_iso_8601": "2024-03-25T00:22:31.025832Z",
            "url": "https://files.pythonhosted.org/packages/fb/f1/6491f4da885f31869021b8cf4427ec7f0813e5bec180c2191a8601b3d321/dwat-0.6.4-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44d75f98b8e53cc1f275633fe8d45f88746131624895b3734a938d2c8c9c0514",
                "md5": "5b5ee17e5863fda189abea96d617cade",
                "sha256": "8403e004f8c65c33e33110bd19e285da61468adb26d3654aeb434b98046f1a67"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5b5ee17e5863fda189abea96d617cade",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 271452,
            "upload_time": "2024-03-25T00:22:32",
            "upload_time_iso_8601": "2024-03-25T00:22:32.575043Z",
            "url": "https://files.pythonhosted.org/packages/44/d7/5f98b8e53cc1f275633fe8d45f88746131624895b3734a938d2c8c9c0514/dwat-0.6.4-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec2d8fd2019ad7830b61d3383019bf09d9a204e8d6516d47f5dc5447a94613de",
                "md5": "27d67c03a677963ae69ccbddc45555ea",
                "sha256": "6a0f27548ee7b09e8252a3e995b75c723cec9aa8996d4ecbadec78a16deebd1e"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "27d67c03a677963ae69ccbddc45555ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 734191,
            "upload_time": "2024-03-25T00:22:34",
            "upload_time_iso_8601": "2024-03-25T00:22:34.497276Z",
            "url": "https://files.pythonhosted.org/packages/ec/2d/8fd2019ad7830b61d3383019bf09d9a204e8d6516d47f5dc5447a94613de/dwat-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49a19b1704ca4ebba69dca31fcd10e1668fb79c372e96e1325cab8cdd53e7d68",
                "md5": "5c613741c2ff1fc638d8f84af79a80aa",
                "sha256": "24bcf2a8d2720116092cd410e50505c315318fc58964ed3432dc37db554dc017"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5c613741c2ff1fc638d8f84af79a80aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 767644,
            "upload_time": "2024-03-25T00:22:35",
            "upload_time_iso_8601": "2024-03-25T00:22:35.933483Z",
            "url": "https://files.pythonhosted.org/packages/49/a1/9b1704ca4ebba69dca31fcd10e1668fb79c372e96e1325cab8cdd53e7d68/dwat-0.6.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0db8fd6bcee4be0e8d368752fd2bc4f02e5d9116d7db59744ecd87acd74a0778",
                "md5": "7af0b17e898e2308b514336202d919d1",
                "sha256": "9e3f34e42efd90aa1dcca74bbfb0138e9fcdfe4496b3ef52ce00a492522ca23e"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7af0b17e898e2308b514336202d919d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 754349,
            "upload_time": "2024-03-25T00:22:37",
            "upload_time_iso_8601": "2024-03-25T00:22:37.705220Z",
            "url": "https://files.pythonhosted.org/packages/0d/b8/fd6bcee4be0e8d368752fd2bc4f02e5d9116d7db59744ecd87acd74a0778/dwat-0.6.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40d09e652215664368d7f9cd70982c03d57dcf3e1c2bc7098b505baf69184056",
                "md5": "597ec248b957d93085a0aec71404e145",
                "sha256": "e709d552070a28bb5d11010f6940033ac31b5cd1463311401e638496d76f26df"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "597ec248b957d93085a0aec71404e145",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1008818,
            "upload_time": "2024-03-25T00:22:39",
            "upload_time_iso_8601": "2024-03-25T00:22:39.255229Z",
            "url": "https://files.pythonhosted.org/packages/40/d0/9e652215664368d7f9cd70982c03d57dcf3e1c2bc7098b505baf69184056/dwat-0.6.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fbb2ed2bce8c06674cc12d49ce1dd90b29b4f2f63f16978fec994899d69ae60",
                "md5": "2e1c90149d2225dd06a66ff55ee057c8",
                "sha256": "3aa970f1c0c8ca1733697c947c7bdc8e2662d103f1092e912c65c4f6d79961a5"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e1c90149d2225dd06a66ff55ee057c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 736676,
            "upload_time": "2024-03-25T00:22:40",
            "upload_time_iso_8601": "2024-03-25T00:22:40.709512Z",
            "url": "https://files.pythonhosted.org/packages/8f/bb/2ed2bce8c06674cc12d49ce1dd90b29b4f2f63f16978fec994899d69ae60/dwat-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e82baa0c883b695b7c3c791a058212caba0d985dbba83558ccbf28db28c8dbfe",
                "md5": "3e435d265e1ba183259835972fe35096",
                "sha256": "069051f5de124e4b3e67ecc72e94d74b30858dcbd688a63e6113a8b8526d83dc"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3e435d265e1ba183259835972fe35096",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 763916,
            "upload_time": "2024-03-25T00:22:42",
            "upload_time_iso_8601": "2024-03-25T00:22:42.213043Z",
            "url": "https://files.pythonhosted.org/packages/e8/2b/aa0c883b695b7c3c791a058212caba0d985dbba83558ccbf28db28c8dbfe/dwat-0.6.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "702ba4a282c9dd0e63009f12dd81048e68cb74dc992329bbb912d612a6e8a5f3",
                "md5": "abfd937904b59df8b5a320c748d138e0",
                "sha256": "02d8f3db862818239a3d63cbb8d885159dc8ad5100ea0e7d6cdda7e95e4735a2"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "abfd937904b59df8b5a320c748d138e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 264745,
            "upload_time": "2024-03-25T00:22:43",
            "upload_time_iso_8601": "2024-03-25T00:22:43.636881Z",
            "url": "https://files.pythonhosted.org/packages/70/2b/a4a282c9dd0e63009f12dd81048e68cb74dc992329bbb912d612a6e8a5f3/dwat-0.6.4-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55d0e82af7883515ac80face10182a1a470a81a98948ff596789a7627fa39e24",
                "md5": "43463b6fb45d1fd99376f7d38d6910b6",
                "sha256": "0694ecb476e8479988e395d87b076507cc6bbf17f71327ab6d88d5e78448727d"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "43463b6fb45d1fd99376f7d38d6910b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 271358,
            "upload_time": "2024-03-25T00:22:45",
            "upload_time_iso_8601": "2024-03-25T00:22:45.521797Z",
            "url": "https://files.pythonhosted.org/packages/55/d0/e82af7883515ac80face10182a1a470a81a98948ff596789a7627fa39e24/dwat-0.6.4-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60f6f8d5073c5d14b8850eb5f367c3f1a8586ac798d24828e09a49febf323be2",
                "md5": "e811f64804b0a0d997da72da34dedf00",
                "sha256": "3a9b877aad22d3bd1512cb43035237e6f3ff08400cf7277a798251d030603e5c"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e811f64804b0a0d997da72da34dedf00",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 733875,
            "upload_time": "2024-03-25T00:22:46",
            "upload_time_iso_8601": "2024-03-25T00:22:46.855468Z",
            "url": "https://files.pythonhosted.org/packages/60/f6/f8d5073c5d14b8850eb5f367c3f1a8586ac798d24828e09a49febf323be2/dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c23b8fc549bad6d1d08dfd714c36cdab476847bd0a0afb448160e06253f79a6b",
                "md5": "ed929adb1a24f34a3e68f4945a537246",
                "sha256": "cff68722b6e56b75a075948d11f86cc72a0b9b45072ce2c72b70059842ad308f"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ed929adb1a24f34a3e68f4945a537246",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 767836,
            "upload_time": "2024-03-25T00:22:48",
            "upload_time_iso_8601": "2024-03-25T00:22:48.287448Z",
            "url": "https://files.pythonhosted.org/packages/c2/3b/8fc549bad6d1d08dfd714c36cdab476847bd0a0afb448160e06253f79a6b/dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2668de1f7c2043a8f21acfd31eea48727d8c30e6e6aee1668aad2a7f43c9167a",
                "md5": "a69c63d003c3b06ea460cd2b64afc4fd",
                "sha256": "b1041f5e9fd5432969540b51424363dd32ed85d453ee171e19f971131c440aed"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a69c63d003c3b06ea460cd2b64afc4fd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 754388,
            "upload_time": "2024-03-25T00:22:49",
            "upload_time_iso_8601": "2024-03-25T00:22:49.967129Z",
            "url": "https://files.pythonhosted.org/packages/26/68/de1f7c2043a8f21acfd31eea48727d8c30e6e6aee1668aad2a7f43c9167a/dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d340fac966c444ad82a238455ed1c86ed2fbf9e587f3b9376376dec1e07b60b",
                "md5": "60f7d4762692939e6adabe5fee7e1339",
                "sha256": "3cfa71a37b7cc7e21db7fd9c6c3d63ee0906257ba223aa643a828fefface3f7f"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "60f7d4762692939e6adabe5fee7e1339",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 955349,
            "upload_time": "2024-03-25T00:22:52",
            "upload_time_iso_8601": "2024-03-25T00:22:52.811574Z",
            "url": "https://files.pythonhosted.org/packages/9d/34/0fac966c444ad82a238455ed1c86ed2fbf9e587f3b9376376dec1e07b60b/dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "965a75614c8ce3e202328739760a815c813a1f8ecb1c93eb0a2d0e8dcfd66f19",
                "md5": "1dd9e6b6b42030da5e43f987167e7a95",
                "sha256": "e064535f1f256d8154dee2bb46190fe4f4fd60ff0f102e8bf48ce7f41631a163"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1dd9e6b6b42030da5e43f987167e7a95",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 736481,
            "upload_time": "2024-03-25T00:22:54",
            "upload_time_iso_8601": "2024-03-25T00:22:54.292310Z",
            "url": "https://files.pythonhosted.org/packages/96/5a/75614c8ce3e202328739760a815c813a1f8ecb1c93eb0a2d0e8dcfd66f19/dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "146b65a72ebbebe1387001a90ef47e9cd0b940abf1bced337bd3beb0365fcd60",
                "md5": "646cabf963bb1bc25c9d1dda0cd03dac",
                "sha256": "382c0204a9754beca20ddac383c8289ca8e549902c0d35a4ef4cd2fda6e1d479"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "646cabf963bb1bc25c9d1dda0cd03dac",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 763404,
            "upload_time": "2024-03-25T00:22:55",
            "upload_time_iso_8601": "2024-03-25T00:22:55.670082Z",
            "url": "https://files.pythonhosted.org/packages/14/6b/65a72ebbebe1387001a90ef47e9cd0b940abf1bced337bd3beb0365fcd60/dwat-0.6.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e347fdb802cb3d0cca37a3cc231e5da87ab33f5ebb1015ea81598f50e9c0de9c",
                "md5": "2fb9eab11bd8ea109bfa2b494c6a2e49",
                "sha256": "8b5dc2a56d432096fbb67cd4dcdd5bb55646cdacc0e8a20926490eb3691bccbf"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2fb9eab11bd8ea109bfa2b494c6a2e49",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 734245,
            "upload_time": "2024-03-25T00:22:57",
            "upload_time_iso_8601": "2024-03-25T00:22:57.052032Z",
            "url": "https://files.pythonhosted.org/packages/e3/47/fdb802cb3d0cca37a3cc231e5da87ab33f5ebb1015ea81598f50e9c0de9c/dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f22faec35adfafca4072644f7019f69a65513ce45781a3ebb01102fc7b1349f8",
                "md5": "e9c0c94cbc12912b1311082bbb336ba4",
                "sha256": "31995f163e52c230e421665cb653cba09391390d4f65d3a7869c60b1cc99af18"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e9c0c94cbc12912b1311082bbb336ba4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 768908,
            "upload_time": "2024-03-25T00:23:02",
            "upload_time_iso_8601": "2024-03-25T00:23:02.036528Z",
            "url": "https://files.pythonhosted.org/packages/f2/2f/aec35adfafca4072644f7019f69a65513ce45781a3ebb01102fc7b1349f8/dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71b5217fea3bd85809a7a2ed2526a415d4e73b5b1e06e308a2be9923ffbb74eb",
                "md5": "5e047f3e3fc6c0d72eab724629c0100e",
                "sha256": "92de45dd0707b7fff868a53c651d047d4c3025d4565188c78abaa263f0364391"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5e047f3e3fc6c0d72eab724629c0100e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 754628,
            "upload_time": "2024-03-25T00:23:04",
            "upload_time_iso_8601": "2024-03-25T00:23:04.042211Z",
            "url": "https://files.pythonhosted.org/packages/71/b5/217fea3bd85809a7a2ed2526a415d4e73b5b1e06e308a2be9923ffbb74eb/dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9af37e76c0408ac1020ef2836e15da38d468af53a6edb2407f9a1b1019a747ee",
                "md5": "fec22126e8f899e2c86d11f1990825b0",
                "sha256": "91681974117657bc4b3b200af7ca659346c5427d03f505b9dda604af5fb13ee4"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fec22126e8f899e2c86d11f1990825b0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 955480,
            "upload_time": "2024-03-25T00:23:06",
            "upload_time_iso_8601": "2024-03-25T00:23:06.218019Z",
            "url": "https://files.pythonhosted.org/packages/9a/f3/7e76c0408ac1020ef2836e15da38d468af53a6edb2407f9a1b1019a747ee/dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "170c1fb8f9f87d22576cd6c36816c42826e4525353746222772835c0892090de",
                "md5": "b0f144c639eec7960deb311cd73fee48",
                "sha256": "a97c6fbf26a10cc5b3a3f335d06b70733a5a8098b4241044657410df1c793a31"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0f144c639eec7960deb311cd73fee48",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 736837,
            "upload_time": "2024-03-25T00:23:08",
            "upload_time_iso_8601": "2024-03-25T00:23:08.075446Z",
            "url": "https://files.pythonhosted.org/packages/17/0c/1fb8f9f87d22576cd6c36816c42826e4525353746222772835c0892090de/dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8a3a55c18b8d30250b7af1aa395889278953e19cdad81f50deea2d118c479ad",
                "md5": "1d742832bf060d0fd06f4f1b9b22077a",
                "sha256": "1fe06bc7b5e693111146b4142719e6ca83ff9607ed87031fda91966854cffcfa"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1d742832bf060d0fd06f4f1b9b22077a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 763878,
            "upload_time": "2024-03-25T00:23:10",
            "upload_time_iso_8601": "2024-03-25T00:23:10.114055Z",
            "url": "https://files.pythonhosted.org/packages/b8/a3/a55c18b8d30250b7af1aa395889278953e19cdad81f50deea2d118c479ad/dwat-0.6.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb6c2379a315dbeafd1c850097eb8a5ed6ee9ffef371076750e7e1f59b933187",
                "md5": "27da3777511cd89611bf1d823d67a946",
                "sha256": "2081b1950660d01e9368066096ab35e212b04337a82858287cf240f30fc2efb7"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "27da3777511cd89611bf1d823d67a946",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 733901,
            "upload_time": "2024-03-25T00:23:11",
            "upload_time_iso_8601": "2024-03-25T00:23:11.664524Z",
            "url": "https://files.pythonhosted.org/packages/eb/6c/2379a315dbeafd1c850097eb8a5ed6ee9ffef371076750e7e1f59b933187/dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6756661fb469f5c8d74380e64f63be86564a2af7c21679d6916f4ee06adfe046",
                "md5": "3f74d7cdc130eaa299309b565abf0196",
                "sha256": "53b60dbb48636c63bab13e6f651d9cecb6ead9c22937d1fdf6119c931f5c9756"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3f74d7cdc130eaa299309b565abf0196",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 767831,
            "upload_time": "2024-03-25T00:23:13",
            "upload_time_iso_8601": "2024-03-25T00:23:13.556384Z",
            "url": "https://files.pythonhosted.org/packages/67/56/661fb469f5c8d74380e64f63be86564a2af7c21679d6916f4ee06adfe046/dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd53298c6375453430c2fef029ba498320be65d64d9f7dd662d9fb44f23e7fb8",
                "md5": "284d72c8a22c8e354da568120c846c17",
                "sha256": "07f291b7a1534669f10e6c77763ca9e873f80ab9a34c7a8e4a275077c3fd22c1"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "284d72c8a22c8e354da568120c846c17",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 754393,
            "upload_time": "2024-03-25T00:23:15",
            "upload_time_iso_8601": "2024-03-25T00:23:15.446375Z",
            "url": "https://files.pythonhosted.org/packages/fd/53/298c6375453430c2fef029ba498320be65d64d9f7dd662d9fb44f23e7fb8/dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55e0d08f50cf26d52e603cf8be149864674cd974617488d962da4d81183eba6f",
                "md5": "30a6fca33eee05c820fd91b56da5e7c8",
                "sha256": "7e9f9957f868d6d4f0c535d030a52d02a02173bada35058a300b178821abcaf2"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "30a6fca33eee05c820fd91b56da5e7c8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 955356,
            "upload_time": "2024-03-25T00:23:17",
            "upload_time_iso_8601": "2024-03-25T00:23:17.403461Z",
            "url": "https://files.pythonhosted.org/packages/55/e0/d08f50cf26d52e603cf8be149864674cd974617488d962da4d81183eba6f/dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0eda45dd3b46ce3596bbb79abfe5c04f838d919b5367f434f524ef4d0d5f460d",
                "md5": "30559394a8c49dd146b81ab342f51376",
                "sha256": "aad59fd6132898afc1d8096e98de9a3ca9d6e80e64b8c0d9fcc26544b1254d69"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30559394a8c49dd146b81ab342f51376",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 736402,
            "upload_time": "2024-03-25T00:23:19",
            "upload_time_iso_8601": "2024-03-25T00:23:19.783195Z",
            "url": "https://files.pythonhosted.org/packages/0e/da/45dd3b46ce3596bbb79abfe5c04f838d919b5367f434f524ef4d0d5f460d/dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d459a33d716978d4767059b54e193427bd23d2920cb3b59777b2f29740edca1",
                "md5": "65c1acfc9feeb27037ef29979b617790",
                "sha256": "9d8a64efbc550d2fb3faea9fda9149897e7633de794900f9ea18baa158400d2f"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "65c1acfc9feeb27037ef29979b617790",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 763404,
            "upload_time": "2024-03-25T00:23:21",
            "upload_time_iso_8601": "2024-03-25T00:23:21.812020Z",
            "url": "https://files.pythonhosted.org/packages/8d/45/9a33d716978d4767059b54e193427bd23d2920cb3b59777b2f29740edca1/dwat-0.6.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c69f0b06228a3fa1a4ecf26d70bb371a662435f004c5026d943dbc38cfb0672",
                "md5": "c0ecf18545cb34d7dad56bd215b6e9b9",
                "sha256": "acb661970d99e1232b9688889304290c6f5360d691564e1d33785f6b1066406b"
            },
            "downloads": -1,
            "filename": "dwat-0.6.4.tar.gz",
            "has_sig": false,
            "md5_digest": "c0ecf18545cb34d7dad56bd215b6e9b9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 26671,
            "upload_time": "2024-03-25T00:23:23",
            "upload_time_iso_8601": "2024-03-25T00:23:23.537440Z",
            "url": "https://files.pythonhosted.org/packages/9c/69/f0b06228a3fa1a4ecf26d70bb371a662435f004c5026d943dbc38cfb0672/dwat-0.6.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 00:23:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zolutal",
    "github_project": "dwat",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dwat"
}
        
Elapsed time: 0.21160s