Skip to main content

General Dynamic Time Warping

Project description

GDTW

Please visit the documentation and interactive demo site at https://dderiso.github.io/gdtw.

GDTW is a Python/C++ library that performs dynamic time warping. It is based on a paper by Dave Deriso and Stephen Boyd.

Installation

pip install gdtw

Documentation

For full documentation, including a quick-start tutorial, please see https://dderiso.github.io/gdtw.

Multi-dimensional signals

Signals can be scalar x: [0,1] -> R (shape (T,)) or vector-valued x: [0,1] -> R^d (shape (T, d)). A single warping function aligns all d channels:

import numpy as np, gdtw
t = np.linspace(0, 1, 300)
x = np.column_stack([np.sin(2*np.pi*5*t),    np.cos(2*np.pi*3*t)])
y = np.column_stack([np.sin(2*np.pi*5*t**2), np.cos(2*np.pi*3*t**2)])
phi, x_tau, f_tau, g = gdtw.warp(x, y)   # x_tau.shape == (300, 2)

x and y must have the same number of channels. Per-channel scaling is applied when scale_signals=True (the default), so channels with very different dynamic ranges are each normalized to [-1, 1].

Running the tests

From the repo root:

pip install -e ".[test]"
python -m pytest test/ -v

This runs the 1-D regression suite (test/test_warp.py) and the multi-dimensional tests (test/test_multid.py).

Our Paper

Please see the published article.

Citing

@article{deriso2022general,
  title={A general optimization framework for dynamic time warping},
  author={Deriso, Dave and Boyd, Stephen},
  journal={Optimization and Engineering},
  pages={1--22},
  year={2022},
  publisher={Springer}
}

Linux

Limited Linux support. Currently supports Python 3.6 on: CentOS 7 rh-python38, CentOS 8 python38, Fedora 32+, Mageia 8+, openSUSE 15.3+, Photon OS 4.0+ (3.0+ with updates), Ubuntu 20.04+

See manylinux for latest list of versions supported under manylinux2014.

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

gdtw-1.2.0.tar.gz (18.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gdtw-1.2.0-cp313-cp313-win_amd64.whl (27.7 kB view details)

Uploaded CPython 3.13Windows x86-64

gdtw-1.2.0-cp313-cp313-win32.whl (26.3 kB view details)

Uploaded CPython 3.13Windows x86

gdtw-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gdtw-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

gdtw-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (25.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gdtw-1.2.0-cp312-cp312-win_amd64.whl (27.7 kB view details)

Uploaded CPython 3.12Windows x86-64

gdtw-1.2.0-cp312-cp312-win32.whl (26.3 kB view details)

Uploaded CPython 3.12Windows x86

gdtw-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gdtw-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

gdtw-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (25.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gdtw-1.2.0-cp311-cp311-win_amd64.whl (27.6 kB view details)

Uploaded CPython 3.11Windows x86-64

gdtw-1.2.0-cp311-cp311-win32.whl (26.3 kB view details)

Uploaded CPython 3.11Windows x86

gdtw-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gdtw-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

gdtw-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (25.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gdtw-1.2.0-cp310-cp310-win_amd64.whl (27.6 kB view details)

Uploaded CPython 3.10Windows x86-64

gdtw-1.2.0-cp310-cp310-win32.whl (26.3 kB view details)

Uploaded CPython 3.10Windows x86

gdtw-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gdtw-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

gdtw-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (25.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

gdtw-1.2.0-cp39-cp39-win_amd64.whl (27.6 kB view details)

Uploaded CPython 3.9Windows x86-64

gdtw-1.2.0-cp39-cp39-win32.whl (26.2 kB view details)

Uploaded CPython 3.9Windows x86

gdtw-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

gdtw-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

gdtw-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (25.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

gdtw-1.2.0-cp38-cp38-win_amd64.whl (27.5 kB view details)

Uploaded CPython 3.8Windows x86-64

gdtw-1.2.0-cp38-cp38-win32.whl (26.1 kB view details)

Uploaded CPython 3.8Windows x86

gdtw-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

gdtw-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (75.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

gdtw-1.2.0-cp38-cp38-macosx_11_0_arm64.whl (25.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

gdtw-1.2.0-cp37-cp37m-win_amd64.whl (27.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

gdtw-1.2.0-cp37-cp37m-win32.whl (26.0 kB view details)

Uploaded CPython 3.7mWindows x86

gdtw-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (76.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

gdtw-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (74.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file gdtw-1.2.0.tar.gz.

File metadata

  • Download URL: gdtw-1.2.0.tar.gz
  • Upload date:
  • Size: 18.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0.tar.gz
Algorithm Hash digest
SHA256 01acea909d04f9deb77e56cbeb6f7a8ed2e601223575dcaefc8bf06272b7121a
MD5 1b84c8f7c360ebfc9d175a2b0b877557
BLAKE2b-256 2c79cb911f77825aae62a7f571ae3d5500e3c85a73d24d1a45b4bb46a45463eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0.tar.gz:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 27.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b2d1b2c6d9bcee572ffe28547e1ddad8be54719c6a0399af4dd651d5d664bf6
MD5 4e4e7cd65d03d9ea5a520dea622ada98
BLAKE2b-256 dd6703350433a8eeba6549894e901cd616ada27b753e62ef04d614eb776b6edf

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp313-cp313-win_amd64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9b97fc1f028c12000fee539921a8a5bf29a9f0f44787a79da48a04eb2f4fcb26
MD5 9dca618b837da209718d74dd891b3a69
BLAKE2b-256 387834fa867ff1f7fe9a63b0bef167d2622dd62bda59e46b7e5f8931192f134c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp313-cp313-win32.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 660b8f0bc8b04a642c516df4c8053e419597ea427a978f2ff17f840c0075ca0f
MD5 b178efee45d5ff768df615368a603c6f
BLAKE2b-256 615503f1783bcc40ef16f686e2645881c6ba647fcfd83d536aa4c89d4edcf878

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3a9aa400bb64ffd7940f1c6285ccd5fc08758d58d6db16fe3b667fb0ea1b83b
MD5 2aa1f28c62e5baa7b714218712a0e689
BLAKE2b-256 c8d03ac8fec99902f6675c97950270cb17e61abf93d8523d216fc24abfa8f1a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 884062ef556720773be2924a758a29f89813f862c6961c69ff3fbc9937098458
MD5 46fc8ce4334de20c6706b14d2c34013b
BLAKE2b-256 f1f3921988f9435a012a44b504ee616223c9c89317cb214b4a259fd0a80440ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 27.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ad8e2a7b2a62441433803501b88395e6c26de4c46abc42347ced952d5805106
MD5 91b2a0d4c6bdc0d04b5a08b2a8943a21
BLAKE2b-256 619f3605add298d45584bfe8da29dc65f8e4bee4c7e923d8d367a81c431d79ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp312-cp312-win_amd64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1c38fb1631f332577927d8cf445f7e0107d32da003576df18e1e5b1d3cdc9802
MD5 3143b9ba7fd3f43bf833240af6c05c47
BLAKE2b-256 e3238c98f557da75dd2b5c9e5009db46e1e1c7ded0dbef36c6064bd50b48c24b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp312-cp312-win32.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22038824df9528e06c3bb6558ffa90c83bb015f4747e4778801dcd1b33a8911f
MD5 8be9b11404864497b8dd18db04ecadb9
BLAKE2b-256 176ffba5ade223cb6deb18a126f01351170f7e59a8060a7697ad55f1c0d2de19

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6247c000e6c33adc30e5ebcd770b96245e4a7baaade13c4eed148d1d9c366fb3
MD5 5fc8b2ad4f4be205d19668bf737ddbb1
BLAKE2b-256 92b82c2bda5588938038c774686062a2bf396024e4323dfc3b61207c83b31346

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0db05a02ed055fcd996450ff5c26399060e91122dd3fd6a3700e527e9dc209f
MD5 047cdb007f2c25068fd0e56961368ab5
BLAKE2b-256 aabe7da15187024e3cddf93ed7748461749740ea1184ec3f3495cb1a9d8f4ceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 27.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 818388d131413e0ed6a5e9bbcfbc7bc05e274f7ea0e0908206e8923286dac402
MD5 67a52844d5e081092fe7f014f2243577
BLAKE2b-256 06eac3e3a7485110b4c26a86664abcf52421c4346b699b7160dcddbffad8413a

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp311-cp311-win_amd64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a5cc02a01c0e26b72ae61ee27942332f8411c0e44d5edb5db897af94fd32ac80
MD5 7140b1978d4f33ba958e913e73eb728d
BLAKE2b-256 d04bd7c1eb0c71ad72f7e5664b709596e1613cb5ad81a36533aa3aa323e4f91c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp311-cp311-win32.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba21630cbc73f905d2f446d8a8c6d4fb90b0e0b4f8c072b0e3b3c841e6149fa8
MD5 1d92c8d97e4787b50176e030047d409b
BLAKE2b-256 263b31e3edf41da407719638138f78312524d63332f4c7eebed03585af7347b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9f37ce331b2311a743caa9a0bdf81978bfc743e9e6c04fadcdbf97d2a0302a5
MD5 2018c50111c10f1939956ab8e1516171
BLAKE2b-256 9f206764998845e23eff0ea96730a5d6a68873247a24c0405d5cc24651c00bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 149cf2b23e301f7e9c265f1b70bb61ad7a7ce6f02d9b7d7ed5cc8be6e5f62a24
MD5 039475d3d86f71a3d7d331ddcbc5f78d
BLAKE2b-256 9b8fd62a6c4172f42125dc9cb84e9a1e681e03e416c63ba5506e6ea58d5864bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 27.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fc900d0e78eb77cd40e28d469f79b13e2e2124d8c217375a4194e04e0d1e9be6
MD5 559079f96b833952fd472c038683083a
BLAKE2b-256 3f71f24d903316a8a051916a4543ff0b9d31d69386aa435b64c368b53ec7f63a

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp310-cp310-win_amd64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bd2ef29a8d17928c2b6a51e922683e478f1a727e51df3d17df0eb191a5f7a9da
MD5 6ec2e8eb61039b6d8f417c399e47a6b4
BLAKE2b-256 bd26567952088c651a1a950a209235f5803d52e1a67455f34516f333f6cbe2dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp310-cp310-win32.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c50da25b6ee672635ad2e0036e04f1205d8405194451f2513c1853f730bd53
MD5 5acde4e09424177cc00c7efa78297755
BLAKE2b-256 a6d9a97aab3638211cb6b8ceded9fc4cb0fcfd36a0046737e35a2b84b03b33f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae9dc839df6481c5cfad73d33e29dde1775633a7b14fd7f5452b44fcf761154a
MD5 8328bca8a7a376cc3e0178f68fd94658
BLAKE2b-256 c4540561192fab8e126cdf68527abe7412e24137dc3ed1e74efc745d7b71d6c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fc0c9a53d7b20ade881955c51fdd09b74cf46c4210edc4bda3bb55db831f40e
MD5 d99183ad42ee70b1f668a8ced20f96b3
BLAKE2b-256 3ad2ba25ba71ed366e88c37e446fc18c9a41a79e33c8dbcbd3ddaa82f9793004

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 27.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0fd409d611cc7464da6600246126309af0eb6c158066d24757407d6430ec5e38
MD5 3e9fc2c53de771289f04902e390459b6
BLAKE2b-256 95e0b99774b0edd0da3cbf6ded7890da202adcf3f06fce2eaab11a1b81040fc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp39-cp39-win_amd64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 26.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 35a03f239e3f1bba0939c59fd02e2dcf2e15cf0d84db4500e0d278c3e927823f
MD5 1db174b9de7c606a2da122ccbbac7768
BLAKE2b-256 67b99a3d3978e36bc4e42f2ef3b4d475cee64ae8c6af5f0e2c7c8c7b18d32110

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp39-cp39-win32.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a88537c81c2cc78df9b684228c2aa96f391f66b23672e26a1f5f17a19b05d01a
MD5 7e716fc6ff3d2c137f799c822404be51
BLAKE2b-256 339f8cea3567bb09cd41e96bbe18059f061bed3775db4a99a703dcf27a2e5741

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b25a6dce4b575c292a21d7d900af2862343862908ab7cfa376c6ecb4d8a85568
MD5 9e54987fdf497fe93f975ec8bef4c148
BLAKE2b-256 f54de6e3909b9257085d38cbeaf75c59899a010f32fb122b51bb13942682f539

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 25.6 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a99ce4860e22b2e4a8afca70a3342841f423f35716ff72dbafec46abbd5e17c
MD5 98bc62b451bed1809106babcae633458
BLAKE2b-256 76ca0db4cf6cb9011eff3f444cac531b2664641a8f9c3ae7fee37fca65f70ea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 953601c110c7b365e08700b8825d55d6fff1b1a5ddb0a770d07a31f56d79182d
MD5 ffd1447bf386d0a0429d7488fcfb2231
BLAKE2b-256 65d8ed41c6d9263987c4c0e8d88537894e4f323ea7ea03c7c73f6cbc96f56af9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp38-cp38-win_amd64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 26.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fb785832326767679f39e57eb9884f53b6d04be465ebc9e31874250c35f84b11
MD5 ea9c3dfb90d77649cb41786a03dbe6b2
BLAKE2b-256 abdd93b8778756ac8b33536f1ee2bcad1fd35218dd469cf66a375bf7dfeec987

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp38-cp38-win32.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40e5b03560083fddce26e9028abb60e04dbe611105f113025dd59d22752d1cce
MD5 0ac1bda54bf4e6d115ccc8f7a6bd98a5
BLAKE2b-256 774afb3d924fecdfa70e8788df01c1cebc0b860ade22d3ac58ba58428bd6394f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 237c7191af8766299da8eb43d971482c4cad473b605f41a66ec34473f4324d91
MD5 2d781d5469980eb84f72ae11f3c57661
BLAKE2b-256 0ade966ad57bdf71308952efe13eac68e133b831f91e40605a7da1be8e034b63

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fad891fdc2c244bfafbb0ed0ca806520ca27e4c295dd5994ed86f615edf311f
MD5 1d1752f5c2aac27ed0cf44aa14a886d7
BLAKE2b-256 7bb7ccc4aeb1896669eaec7474728ada3a0b6ef548e34f9376ddf7899e162c74

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e22cfd44952889942b463011b7931c1f8216a02645074f9fb1adc189ca88b057
MD5 4c8936f558a371c70056ceff8566cee4
BLAKE2b-256 4b5e7914fa3c0a505aa83313b4674c7ece2c5aed9dd3a42494e7b3f80317b45b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp37-cp37m-win_amd64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: gdtw-1.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 26.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gdtw-1.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ef7d2e4c819bcf14ba1907626e4caeffdc606f1d7f4b7459256c57b7bf2e59ba
MD5 031d2f5ed48c0d14b506fcecfbba4a86
BLAKE2b-256 25b1a14860401b2bea159a5b2bd2c4fc5b6c987bbd3a38a56c61d7322f13c5a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp37-cp37m-win32.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42cf742dcd51d639e1710def205a07ee46809c5d5e7afbc750d5ca08eea20973
MD5 bfa1e9f69be6f626989d512faf2e9aa4
BLAKE2b-256 309f8c796dd08853095aad793edd6aa382fc3b45346c81efc4c294bec3400315

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gdtw-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gdtw-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 732d306131d225bf2fa2b019e7cfc68797ddeb7c5bc3e7c6606e676a7f49afa2
MD5 95c765cec7ff53a4cc58050e9fbb79e3
BLAKE2b-256 4c1e00fcc1a9cd27dc3909aa345f7b70126356954af790c364daec9db7cc2c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gdtw-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on dderiso/gdtw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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