Skip to main content

Acoustical simulation and computer-aided design of didgeridoos

Project description

DidgeLab

1. Introduction

DidgeLab is a free open-source toolkit to compute didgeridoo geometries. Traditionally, building a didgeridoo is a random process: builders know how geometry influences the sound, but the exact sonic properties can only be determined after the instrument is built. DidgeLab helps by first defining the desired sound and then computing a geometry that (in simulation) achieves it.

It provides:

  1. Acoustical simulation — Compute resonant frequencies and impedance spectra for a given didgeridoo geometry. This is similar in spirit to Didgmo and DidjiImp.
  2. Computational evolution — Search for bore shapes that meet target sonic properties (e.g. drone in D, toots in F, G, B). This is inspired by the work of Frank Geipel (Computer-Aided Didgeridoo Sound Design, CADSD).

So the first part takes a geometry and predicts its sound; the second takes a target sound and searches for a matching geometry. To the best of our knowledge, DidgeLab is the first open toolkit that implements this inverse design.

The software is a Python toolkit rather than a point-and-click app: you use it from scripts or Jupyter notebooks. There is no graphical user interface. You need Python skills to use it.

2. Related works

  • Frank GeipelComputer-Aided Didgeridoo Sound Design (CADSD). DidgeLab’s approach is based on our reading of his ideas and descriptions.
  • Dan Mapes-Riordan (1991)Horn Modeling with Conical and Cylindrical Transmission Line Elements. Foundation for the transmission-line acoustical model.
  • Andrea Ferroni (YouTube) — Didgeridoo acoustics and playing; e.g. DIDGMO explanation, backpressure, cylindrical vs conical bore.
  • Didgmo / Didjimp — Existing tools for didgeridoo sound design; used here as a reference (DidgeLab’s impedance spectra match when given the same geometry).

3. Getting Started

3.1 Installation

Prerequisites

  • Python 3.8+ (Conda or venv recommended)
  • Optional: Cython and a C compiler for the fast simulation backend

Use Pip Package

pip install didgelab

3.2 Documentation

Here is an overview of the available documentation. The best place to get started are the tutorials:

4. Developer Instructions

4.1 Compile from source

If you use the pip package, you do not need to compile it from source.

  1. Clone the repository and go to the project directory:

    git clone https://github.com/jnehring/didge-lab/
    cd didge-lab
    

    (Or download and unzip the source.)

  2. Create and activate a Conda environment:

    conda create -n didgelab python=3.8
    conda activate didgelab
    
  3. Install the package (from the repository root; this builds the Cython extension and installs didgelab):

    pip install -e .
    

    Dependencies (NumPy, Cython, etc.) are installed as build/install dependencies. For a non-editable install: pip install .

  4. Run a quick check (e.g. a script or notebook that runs a simulation and prints a small impedance table). If you see a frequency/impedance/note table, the installation is working.

4.2 Unit Tests (pytest)

From the repository root:

pytest

Tests live in src/tests/. To run a subset:

pytest src/tests/test_geo.py
pytest src/tests/test_KigaliShape.py -v

Some tests mock the Cython simulation backend so they run without building it; others require the full install (including the compiled _cadsd extension). Use the same Python environment in which you installed didgelab.

4.3 Building the Python package

  • Editable install (recommended for development)
    From the repo root:

    pip install -e .
    

    Changes in src/didgelab are picked up without reinstalling.

  • Regular install

    pip install .
    
  • Rebuild after changing Cython code
    Reinstall so the extension is recompiled:

    pip install -e . --no-build-isolation
    

    Or pip install -e . --force-reinstall if needed. A C compiler and Cython are required; see Cython docs for your OS.

  • Source distribution and wheel

    pip install build
    python -m build
    

    Outputs go to dist/ (e.g. pip install dist/didgelab-*.whl).

  • Tutorials in examples/tutorials/ walk through acoustical simulation, shape parameters, and evolution.

  • The didgelab package is documented with module and function/class docstrings; use help() in Python or read the source.

4.4 Build Documentation

API documentation (pdoc)
Use pdoc to generate API docs from docstrings. From the repo root, ensure the local package is used (e.g. after pip install -e . or with PYTHONPATH=src).

  • Development — live preview
    Serve docs locally and reload as you edit:

    pip install pdoc
    PYTHONPATH=src pdoc src/didgelab --http 8080
    

    Open http://localhost:8080. Stop with Ctrl+C.

  • Render static HTML
    Write the API docs into a folder (e.g. for deployment or offline use):

    pip install pdoc
    PYTHONPATH=src pdoc src/didgelab -o docs/html
    

    Then open docs/html/index.html in a browser or serve the docs/html directory with any static file server.

5. Source code overview

  • didgelab — Main package:
    • acoustical_simulation — Entry point for running simulation (Python or Cython backend).
    • geo — Geometry class (segment list, load/save, scale, cones, volume, etc.).
    • conv — Note/frequency conversion (note names, cents, wavelengths).
    • fft — FFT and spectrum helpers (WAV, harmonics, fundamental, peaks).
    • visualize — Plot bore profiles (2D cross-section).
    • app — Global app, config, logging, publish/subscribe, services.
    • sim — Simulation: sim_interface, tlm_python, tlm_cython (TLM = transmission line model).
    • evo — Evolution: shapes, loss functions, mutators, evolution loop, checkpoint/loss logging.
  • Build — From repo root: pip install -e . (see §4.1 and §4.3).

6. Licensing

DidgeLab is published under Creative Commons BY-NC-SA 4.0:

  • Share — copy and redistribute in any medium or format
  • Adapt — remix, transform, and build upon the material

Under these terms:

  • Attribution — Give appropriate credit, link to the license, and indicate if changes were made.
  • NonCommercial — You may not use the material for commercial purposes.
  • ShareAlike — If you remix or build upon the material, you must distribute your contributions under the same license.
  • No additional restrictions — Do not apply legal or technical measures that restrict others from doing what the license permits.

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

didgelab-3.0.15.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

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

didgelab-3.0.15-cp314-cp314t-win_amd64.whl (247.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

didgelab-3.0.15-cp314-cp314t-win32.whl (242.2 kB view details)

Uploaded CPython 3.14tWindows x86

didgelab-3.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl (520.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

didgelab-3.0.15-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (518.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

didgelab-3.0.15-cp314-cp314t-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

didgelab-3.0.15-cp314-cp314t-macosx_10_15_x86_64.whl (248.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

didgelab-3.0.15-cp314-cp314-win_amd64.whl (240.8 kB view details)

Uploaded CPython 3.14Windows x86-64

didgelab-3.0.15-cp314-cp314-win32.whl (236.6 kB view details)

Uploaded CPython 3.14Windows x86

didgelab-3.0.15-cp314-cp314-musllinux_1_2_x86_64.whl (509.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

didgelab-3.0.15-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (508.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

didgelab-3.0.15-cp314-cp314-macosx_11_0_arm64.whl (242.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

didgelab-3.0.15-cp314-cp314-macosx_10_15_x86_64.whl (243.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

didgelab-3.0.15-cp313-cp313-win_amd64.whl (239.8 kB view details)

Uploaded CPython 3.13Windows x86-64

didgelab-3.0.15-cp313-cp313-win32.whl (235.5 kB view details)

Uploaded CPython 3.13Windows x86

didgelab-3.0.15-cp313-cp313-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

didgelab-3.0.15-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (513.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

didgelab-3.0.15-cp313-cp313-macosx_11_0_arm64.whl (242.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

didgelab-3.0.15-cp313-cp313-macosx_10_13_x86_64.whl (243.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

didgelab-3.0.15-cp312-cp312-win_amd64.whl (239.9 kB view details)

Uploaded CPython 3.12Windows x86-64

didgelab-3.0.15-cp312-cp312-win32.whl (235.6 kB view details)

Uploaded CPython 3.12Windows x86

didgelab-3.0.15-cp312-cp312-musllinux_1_2_x86_64.whl (519.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

didgelab-3.0.15-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (517.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

didgelab-3.0.15-cp312-cp312-macosx_11_0_arm64.whl (242.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

didgelab-3.0.15-cp312-cp312-macosx_10_13_x86_64.whl (243.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

didgelab-3.0.15-cp311-cp311-win_amd64.whl (241.2 kB view details)

Uploaded CPython 3.11Windows x86-64

didgelab-3.0.15-cp311-cp311-win32.whl (236.6 kB view details)

Uploaded CPython 3.11Windows x86

didgelab-3.0.15-cp311-cp311-musllinux_1_2_x86_64.whl (511.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

didgelab-3.0.15-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (508.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

didgelab-3.0.15-cp311-cp311-macosx_11_0_arm64.whl (242.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

didgelab-3.0.15-cp311-cp311-macosx_10_9_x86_64.whl (243.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

didgelab-3.0.15-cp310-cp310-win_amd64.whl (241.2 kB view details)

Uploaded CPython 3.10Windows x86-64

didgelab-3.0.15-cp310-cp310-win32.whl (237.0 kB view details)

Uploaded CPython 3.10Windows x86

didgelab-3.0.15-cp310-cp310-musllinux_1_2_x86_64.whl (495.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

didgelab-3.0.15-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (492.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

didgelab-3.0.15-cp310-cp310-macosx_11_0_arm64.whl (242.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

didgelab-3.0.15-cp310-cp310-macosx_10_9_x86_64.whl (243.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

didgelab-3.0.15-cp39-cp39-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.9Windows x86-64

didgelab-3.0.15-cp39-cp39-win32.whl (237.1 kB view details)

Uploaded CPython 3.9Windows x86

didgelab-3.0.15-cp39-cp39-musllinux_1_2_x86_64.whl (493.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

didgelab-3.0.15-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (490.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

didgelab-3.0.15-cp39-cp39-macosx_11_0_arm64.whl (242.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

didgelab-3.0.15-cp39-cp39-macosx_10_9_x86_64.whl (243.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file didgelab-3.0.15.tar.gz.

File metadata

  • Download URL: didgelab-3.0.15.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15.tar.gz
Algorithm Hash digest
SHA256 04ddf40e4c8e542cafc3fdb8e9f78e7ac119de220d2b16b55e64be5883465746
MD5 ab416bda4c114470eeedd9c40398e386
BLAKE2b-256 ce57f604df57fd42515a40b94e071364b2605a75e418ceb21192ff78a708fd3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15.tar.gz:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 247.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4a7c2840b1baff8eec3fb1d52f24dcb85856f8244667b2c1ea78706051206be8
MD5 8b2ec1bae4ca324fe7a3612b74d9d710
BLAKE2b-256 b5134ddc5f4ed929afb743bb1c743c303e1ef7581ecf6d534d63baae79a783f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314t-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314t-win32.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 242.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9f2ba6c446a39cd5aed53d4e3cd7f90e6951d65c4fd63b36862059401eba2c9b
MD5 d93d3edf175efa637f8ec412c6144885
BLAKE2b-256 e70f98872b824aee679218ff04c5a56709545f29a078fb7c50f8a1e77369d2bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314t-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b65c669418d2307c48da02000a1a646a3c862911c2117198aa1019e80b4e5872
MD5 69dac2955437e12fa3fd9b1282b28c57
BLAKE2b-256 6ca61a554d40da750ec03dcfb7d4af1a8af76738487505b4bf66383f1c3027fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1229c6b906be96106d6293eb9aa1e038a1a1d2f19a127623cba6a6d3f7fb0987
MD5 7baa64bd29c86a2c6d35fc5e3c89c9e9
BLAKE2b-256 6e8b30b4e778f4af6142ed8da11d01e66526aa6579227346f958f785c7c6da88

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fe22de4af39001f745a684d1a6ab7cf1ba939faf26f5955027d74f7b4fb6c24
MD5 186ae276131a4a8c1a67d99c4d1da570
BLAKE2b-256 a38352ca4fc9b05a2b1afdb025d516fee49aee5fc5e85923210aed46b241f05d

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a06f32cda66182b527f402698ce6e42d2271b5f19ba0876f94190a2681a5b739
MD5 961415d0fb29384a4f8f8ece5b2da51e
BLAKE2b-256 edae9464bcf22c6140828d705fad4cd40894fa4a1b0cb3ee930aa4b545dc590a

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 240.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bc6863c78e14445c0db57fd044584933844277d3d6e9a1a738b6615277d9650d
MD5 f8336d30cecdc8f9e12a8999c27b22a2
BLAKE2b-256 f5470ac005372727ae5a20a6a523e91636097ae170cacdf5da75e7252229f233

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314-win32.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp314-cp314-win32.whl
  • Upload date:
  • Size: 236.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f84afa59aa7b2e8da181b69f820861cbc9b56ee491d1a48c97179429fa653a78
MD5 7644c340604288ed4a9e363797e6c52b
BLAKE2b-256 bbe204171f66f45e0315b60d5456426e96969275b1f3f032c58c5e45562cc878

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80319de8a3f9c8b31daaf0914f162d5c8654f70461113c7064b005015abacd23
MD5 98c5454e2def27a2ad914fe17bbed18f
BLAKE2b-256 506553e56013a4c305239905c6e1f86e2660e41ba9d830a557c84421b8d9b82d

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 23cc964641f6c23f1a3339b131ef4c5010e9df9d32e4defa75a26f961dfec7bc
MD5 07ec3d25a78848396591a76d8b6b1e6a
BLAKE2b-256 77039d4d1c7af34bdd804f47e71a798746e82f5a4e5419ad2992d2ec5851275e

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec3137826f3f2508d99d380d89618ab8aeec9e43a50455868b4810689a290b11
MD5 1ad734125be4717d8be893b815f36f97
BLAKE2b-256 2fd043a179f4697924decfcca00111566db772f3a140d67d4913221c38dbe887

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff9cb27702c33ec0244bc6c6aa0484d691d68599ca3915f8dc99e8fa4b82f5f2
MD5 07b2bd405ad0cedddeb30240a15fb716
BLAKE2b-256 9db14ebfe8b9cc20980ea19ab929b7cab8e7ad179bb1d8a4e5e2cded635d5fb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 239.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 72c2821174a085e2d51943dde714d91ea2b920fa26cb55fba5aafedad95a83b8
MD5 29a34e44137af850e8c40c4f6479c043
BLAKE2b-256 0e67d1c2f088fdcd26dae720be28beb3b3e66bd999ed39342b8edd9f7f3a40d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp313-cp313-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp313-cp313-win32.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp313-cp313-win32.whl
  • Upload date:
  • Size: 235.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d75e8729279d078768d9d95c3fda55d52e8f4111e9c1d44e65c5ab6e97c3a3e0
MD5 96b4962a5b06a27f0e9be3eb871741d8
BLAKE2b-256 6b8b1b9f9625242d9c69138d2b8c83cb4cc7dc43a81af347dbdd4947e20c3e1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp313-cp313-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d04536f3546cf7256d89423aaccc672c707ceb68ce92f9be64fd3b45a81f7876
MD5 d0208c6e6c3e41a3133fac856c522303
BLAKE2b-256 c18aea7c1b6e94c7d5f5078202e715319c619537b41be4df6848520f158e905c

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1dd4b209837705e2a32883dd3d4786f226173a6da4751882c945783eece07e89
MD5 4a4586abffb880194a254fb14cae07fd
BLAKE2b-256 edc91379e7de1f8e5c439e4b746d0d2834c6dae93a6b129836b7aa1fee0e0dcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 352b874bdc8b36190248a7a0e7c8e4758f97f8d59f606bd3f31212b1ef584278
MD5 45747d4930a4e87d3dae8523ae9765e0
BLAKE2b-256 fb896273fa9f584474d871553e3ad4160b6e90ff96c28a3b93364150e9e100c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 062c6de2ad73f587b579761da4a7aa662399da1a18f91917563d5107da6bf209
MD5 95ed4ea24347b46d9785ff9b4e28ea22
BLAKE2b-256 3870beea920a4b2f87d3b2d05e89ab2d3b11cc4c08d1ef2d32af45c4323eb80b

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 239.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9087dbcbd5428e4f2b0f77c6c789e08b4955f848330acd3476cd194e88e0bf60
MD5 c6874c5331d23e22674050ef45eba6e7
BLAKE2b-256 fd5f4c957a11ff2dc1a38c683ed84e613be8e82836d789eb1b8103f0c1729039

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp312-cp312-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp312-cp312-win32.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp312-cp312-win32.whl
  • Upload date:
  • Size: 235.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c0de4e7767b48fb823ac984336cdada7b7d3f8d406d8e6a8ddda5a3ed99cea9c
MD5 8bf7af3e614a0d6fdea5c0eefd5c976d
BLAKE2b-256 5b173d4841ce364c83ce9078bb4795944a7b2d4eb927f2e683d944775f705dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp312-cp312-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a6b150f3e784b433b9b4e0a21d284e2a5f3d39fd054942acb3701a06b94cf90
MD5 9b75842f7dfe0ea4248f1adb7e38c36e
BLAKE2b-256 9b7a942e01fcf46b531acc3197b5df789c394820c03627caff8f813c567ef94f

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 97b16a563c1c47611879afc2df5b2dbe890286eeb7e58b0d10455ff4d20cbcb9
MD5 f475d1482ef6370a6d2cfa76b1fc01d6
BLAKE2b-256 89ece4dc36916c3003f29fa8cf3d1802398fdb61c698607b8662be1719ac71d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f09b83f56fe69a5550cfc65b259a05f6cd048519fd8fe3573a85c875fe98ca51
MD5 1c88ab659c322d1debd7d2e920d118ab
BLAKE2b-256 ddcf8e9e8683e9a9a0d52e419d04e6c3042a96ba401d52eb7f4c0e540f046b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ed1e57002719dacac456b88f1e9b1393c0ee60f04e1df053392da12f589acfe
MD5 cdd8fa3dba8235dc2f56128556259b31
BLAKE2b-256 06db10212fc2f452d997e8c9ab1792eaba91af11acd991302bbb5fbf2afd9638

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 241.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b53bc20dc18c84b3fd4b3fe53b8dd83f74e5372dc6655f3ad4f47c7d1ff58802
MD5 7750c0b654c964f241dbcc4ed07a8e7a
BLAKE2b-256 4925bd9df625861dfc6f7324f257cc0b3ff610637d86477347c420f9ce611bd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp311-cp311-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp311-cp311-win32.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp311-cp311-win32.whl
  • Upload date:
  • Size: 236.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0ef0ed49e26c29f750dbc1d97c6d378fc827cf57f32e309d68f99f5a95ee426b
MD5 c673b1a9efa20510fb8b84e43696ea6b
BLAKE2b-256 ee4a45b7034ddb5211d32a82a76fa00d273ccb1d35f3862510aef3e39162352c

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp311-cp311-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6373b85e89ed151f9f91bf5958d48f966442773134845cee4ffefa885cb6d36
MD5 f3329643d5b904f3c1a59027a9e6fa78
BLAKE2b-256 6eaca4c00f89c5cf1ceab7a1a31eab99be72f35b9931c11e4a9bfc504cd9dfff

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 443a30769b67e19ebe51f6c2a8b9137099e75905744564740a4ea37f6efd153a
MD5 c3e0ff50a815c645e677ada6d5f9788a
BLAKE2b-256 cf853f0a1483beebd34e4ec534397c34bf759a2a65d15c4307ecb6a520eeec12

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8f84623223d2925b6dcdae6181c979669ff6b45431de287925682d8dff51084
MD5 a229859de440f997431f033910b58575
BLAKE2b-256 3da93b79a161690187328f30f0968b9f7eea83e4ba810e6c52c5406885d16a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11890a235d3088cab62711fbcf6c7442278b88d9fcab98a89ad6d85ed2fda05e
MD5 34516da385040370fb157fb23bf6e3ef
BLAKE2b-256 3f531e11debd4464980a24b2f912dd51c72f390a401383ee483b74669d129f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 241.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 89d2228f78c990c695ac53a7aec1417e1787031f32cb533208f19c10deb1df46
MD5 ce6db54d63a135fd0116f13ca8a89118
BLAKE2b-256 78bd430ca9445b80f0ebaad578763293b0a019f6d6e479d3911dbc1d4564013c

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp310-cp310-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp310-cp310-win32.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp310-cp310-win32.whl
  • Upload date:
  • Size: 237.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2c1247805c58f75464016f39f60f93d8920e7b7fb4d8f0cab55c792747a58fa7
MD5 43b0eae3eb2d44be3b3ebee46edc7029
BLAKE2b-256 4f28a5f0cfff5f95c4a40f47ef72a0ed2d5ec2e997fce68d20f5d328af22a638

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp310-cp310-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cba33e075d3457dd370df9d43c4914685dff16b26e107259a1cb0f7b3b832211
MD5 69424fb2bf06cfb2707ed52f25f96da7
BLAKE2b-256 625d0d91a4f681a1401776f67a81f540e3e27e059ebc654c061c92697fc54adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e0ec1b76d3ee718538d2cd674f1030751f2d20e4a66979a39bfb63e9a2cfaca0
MD5 27ddc29b0ac7b3359b2ca930570c9cb3
BLAKE2b-256 b9c5ee4a47c3904e4dc07be1882c439809cde15f246a6c08f724f4b3991329e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7834a1b1cbcfae4a99a5d2fda298df8337b0d60b28b1ba9303919dd8952846aa
MD5 ddc86121429600d2be59c2ad0a31a5e4
BLAKE2b-256 19296153bc2fff01471bd8375b92031d12acf97c812405ea18241811749e8cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a87004b0da97f0592145c778675ba940037732b7665cfbfec13e2d63471cac3a
MD5 2e2d401197939ea7915d0082bdc2df8b
BLAKE2b-256 6a97538d552e32f81723e3b1ab61f71c403318f94bdbb1b0ab6694301bc952d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 241.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 feb65aeea1f5e6f90e3846b1f504d05315333496a1546653db27c372ba597ab5
MD5 4a6abf75210af224513f5c1150bba6eb
BLAKE2b-256 8a7e78f9bfa1d5e3e6ff5c14665f5f10ab220b9a775be31f3f476da20f4a0e69

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp39-cp39-win_amd64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp39-cp39-win32.whl.

File metadata

  • Download URL: didgelab-3.0.15-cp39-cp39-win32.whl
  • Upload date:
  • Size: 237.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for didgelab-3.0.15-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 25c03d768d5d64cf6ac4bd1157eb3b448c370ac00b19b9dd420b6bab68352a9c
MD5 d9a0ba538d47af25500b715b37849b29
BLAKE2b-256 832b113e5ba6e909ef6af27aeab6b7ee915245e9425af1c24e6f0e1b4618a43b

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp39-cp39-win32.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2f9689f2fcf01b9a71ddfb0373a3b0c3b32529280807656db7c736bdcd19c46
MD5 f8a3dc0b46b32b4e7d85eabeb45d815c
BLAKE2b-256 c481cb013acfdcbb5ce798401870b513974bad5178b202fc60025561a5c0894a

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3f1d3cde014b20471368bd5a17bf47031a8157265700ce1a1319b749437e9c69
MD5 a0670ac53a1d36c92a1be859ea2d84d7
BLAKE2b-256 e17e7b1a91bbbd7b5b672b3b0c9af38c9d529ad65c89cd2033693b2a58387a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a94814a0182a96c1d014807fe692ec80200745686d2344d12ccd2a791e3759de
MD5 1211493264ce82db0d2f664e909df7d5
BLAKE2b-256 27a8259e9be892527dec4969da632ce1d676a542dd2e791882d3ed1305ab8052

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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

File details

Details for the file didgelab-3.0.15-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.15-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f7e7b4c144b58e84e893c074c1a9414e860fc05e16723564f3b84026c3b2fa8
MD5 d1dcfb83be7c78e0944b09201eb5d3a9
BLAKE2b-256 976d981cad27d13ba78d23afc301313b7c32aa33f242d2b13cb26013e9096407

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.15-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-and-release.yml on Didgitaldoo/didge-lab

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