Skip to main content

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.

If you are not into Python programming, I suggest you use the web-based software didgelab.com.

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.

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.20.tar.gz (4.6 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.20-cp314-cp314t-win_amd64.whl (369.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

didgelab-3.0.20-cp314-cp314t-win32.whl (357.2 kB view details)

Uploaded CPython 3.14tWindows x86

didgelab-3.0.20-cp314-cp314t-musllinux_1_2_x86_64.whl (815.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

didgelab-3.0.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (821.1 kB view details)

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

didgelab-3.0.20-cp314-cp314t-macosx_11_0_arm64.whl (378.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

didgelab-3.0.20-cp314-cp314t-macosx_10_15_x86_64.whl (378.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

didgelab-3.0.20-cp314-cp314-win_amd64.whl (363.5 kB view details)

Uploaded CPython 3.14Windows x86-64

didgelab-3.0.20-cp314-cp314-win32.whl (351.7 kB view details)

Uploaded CPython 3.14Windows x86

didgelab-3.0.20-cp314-cp314-musllinux_1_2_x86_64.whl (818.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

didgelab-3.0.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (817.0 kB view details)

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

didgelab-3.0.20-cp314-cp314-macosx_11_0_arm64.whl (372.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

didgelab-3.0.20-cp314-cp314-macosx_10_15_x86_64.whl (373.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

didgelab-3.0.20-cp313-cp313-win_amd64.whl (362.2 kB view details)

Uploaded CPython 3.13Windows x86-64

didgelab-3.0.20-cp313-cp313-win32.whl (350.4 kB view details)

Uploaded CPython 3.13Windows x86

didgelab-3.0.20-cp313-cp313-musllinux_1_2_x86_64.whl (822.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

didgelab-3.0.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (821.8 kB view details)

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

didgelab-3.0.20-cp313-cp313-macosx_11_0_arm64.whl (372.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

didgelab-3.0.20-cp313-cp313-macosx_10_13_x86_64.whl (373.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

didgelab-3.0.20-cp312-cp312-win_amd64.whl (362.4 kB view details)

Uploaded CPython 3.12Windows x86-64

didgelab-3.0.20-cp312-cp312-win32.whl (350.5 kB view details)

Uploaded CPython 3.12Windows x86

didgelab-3.0.20-cp312-cp312-musllinux_1_2_x86_64.whl (823.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

didgelab-3.0.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (826.6 kB view details)

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

didgelab-3.0.20-cp312-cp312-macosx_11_0_arm64.whl (372.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

didgelab-3.0.20-cp312-cp312-macosx_10_13_x86_64.whl (374.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

didgelab-3.0.20-cp311-cp311-win_amd64.whl (363.0 kB view details)

Uploaded CPython 3.11Windows x86-64

didgelab-3.0.20-cp311-cp311-win32.whl (351.1 kB view details)

Uploaded CPython 3.11Windows x86

didgelab-3.0.20-cp311-cp311-musllinux_1_2_x86_64.whl (836.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

didgelab-3.0.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (832.9 kB view details)

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

didgelab-3.0.20-cp311-cp311-macosx_11_0_arm64.whl (373.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

didgelab-3.0.20-cp311-cp311-macosx_10_9_x86_64.whl (374.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

didgelab-3.0.20-cp310-cp310-win_amd64.whl (363.1 kB view details)

Uploaded CPython 3.10Windows x86-64

didgelab-3.0.20-cp310-cp310-win32.whl (351.6 kB view details)

Uploaded CPython 3.10Windows x86

didgelab-3.0.20-cp310-cp310-musllinux_1_2_x86_64.whl (810.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

didgelab-3.0.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (805.8 kB view details)

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

didgelab-3.0.20-cp310-cp310-macosx_11_0_arm64.whl (373.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

didgelab-3.0.20-cp310-cp310-macosx_10_9_x86_64.whl (375.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

didgelab-3.0.20-cp39-cp39-win_amd64.whl (363.4 kB view details)

Uploaded CPython 3.9Windows x86-64

didgelab-3.0.20-cp39-cp39-win32.whl (351.9 kB view details)

Uploaded CPython 3.9Windows x86

didgelab-3.0.20-cp39-cp39-musllinux_1_2_x86_64.whl (808.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

didgelab-3.0.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (804.7 kB view details)

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

didgelab-3.0.20-cp39-cp39-macosx_11_0_arm64.whl (374.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

didgelab-3.0.20-cp39-cp39-macosx_10_9_x86_64.whl (375.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: didgelab-3.0.20.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20.tar.gz
Algorithm Hash digest
SHA256 32da9af5f21277d5fb54a01258a48898b1c66092f0fd03f7bd4106f0c8a4a549
MD5 404a9724005f5243dc959f8b43fd26b6
BLAKE2b-256 e5c2ee9b57da9dcfb175fb2e56b38f3a5d92ef5f929f6fad1b070acad2a906e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20.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.20-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for didgelab-3.0.20-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f31f9ec3ef350991dc4af1b0c5e5eceb4758a3e85aa3450c22eb7df6a501d45a
MD5 7728a620e85cc6bcd7e346db3951c8ec
BLAKE2b-256 ce20dbe306a841454457fe7239ff579c07cfcd578e746da84f2508004da17723

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314t-win32.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 357.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 63ea72480b704178e209817d18fb82ecd680f525941bfc1ef1e36dc6240208dc
MD5 bb33d99b7525e3d6247657a2c6f33603
BLAKE2b-256 789d7078de6f42caa0a5bdeff47cc552f2bf9032f88496b382083b95fa16fe01

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68ccb0e4607666ec49812aed5edcbf286991716b34786653c6aaf7d97a821d00
MD5 9b995cf94cc22d5f4f0a57a3ecf86187
BLAKE2b-256 af8bba0ffeaf8c01e8d819bd79c15ec0b7e25eaa73481e0a2ef3a68afa5521f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03a39cd1209ca985c9c67039f4f13a5b25386a3a5ecfa9c5d7f901067af8776c
MD5 669a682d89d859d3e3a885ec24069b38
BLAKE2b-256 17e220f280917eef63d210c1ad6b4feb41028c4401bb5d17f71d78bcb45067b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.20-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 640982ae37298e4370e999c47b6b40878fe38c47536179e6e138ecffb72b51d2
MD5 ab52c2717eabbbe41c0c3a0302b07222
BLAKE2b-256 43fef80f1b71f1808bc69c19a5263a2bea71346ced561f8cf1b962f10b958859

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 141e813cfba71fb5560783723276589fcae847876824a858f0fbb8bf81e4dd50
MD5 77bd83ca393090c0023c9aa6ba7d8378
BLAKE2b-256 e2e30a864342a21ac3845805de933279fdc983b7cfd80b2311ed54feba947636

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 363.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 04fceec87363265ccaa37ed9bb81b05ad3c880d1e95e8c31acde26f8ca0995a5
MD5 bcd2073643fa626b1532b3db293e3753
BLAKE2b-256 2cd7318a81589b83b0803c8584ba138ce893d34db8dd1a627a7730b5af5365ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314-win32.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp314-cp314-win32.whl
  • Upload date:
  • Size: 351.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a298f8dea428bf7602eda35491e38a456b846e504cc47e09e26eb71825dad937
MD5 fb85df6cf9d6017c7e1ace4512ee4e17
BLAKE2b-256 72924390f79a485633887a955973f0fe8781d96775ccfa1b0306197e57587dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 747b3e1278df79b5887553c358ff8f3110b542599fdb7f2d762b4d8dafe44be5
MD5 2716580e6ab6bc94e488cad79683b254
BLAKE2b-256 6930844e9d07ecddf28d3e66235ce17d373842e8abdda559e475d7c3c5cafc80

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 045681fd89a2e46ca8beb4bb38d7dd5b8603f670cf40965702060cc62ad62853
MD5 4b7806753d31b551b789c9273009315f
BLAKE2b-256 9ee42ac2552029ee2ec8416c1852c25e1b3f82baa4674820ac7006320e201028

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.20-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eca81545e8c252902959ee2b2faf0f3725c5e2172e7df65ac1a1c778c5a9706
MD5 80f3305547d6fabebb9e829ce639f414
BLAKE2b-256 28743cf9da2548bb2ff568abc73d508c65f88562f3aa50e029879b625e2bb870

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 259dc1deb0802ef8da91e4fc7c52c59a9ef283b1679cc418993f61a751c4cfa1
MD5 853e05c82051ef73a38eaef7b8bb312c
BLAKE2b-256 1ffebf0207c1c2ac50dffde2050c8397745ba01cd01c7c205bd503a0d548649b

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 362.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88be555baaa3be16e3abd3e7be34d455783feb08fdebb9f0fe2d1cb3cb88b946
MD5 a9c3e1dc14174943e02e616af5fefca3
BLAKE2b-256 32a479735753446c0da614f8a93c7b889b3c9f59fc9a9b647478d2b99a2a130b

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp313-cp313-win32.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp313-cp313-win32.whl
  • Upload date:
  • Size: 350.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b72a92cbcbaa9b2781f958b793deaa20f7b5c3490aa03246bbd844462ee1dd2a
MD5 afba9b558ba9ceb8307d75a6ed91ff53
BLAKE2b-256 c317ac3b63f047e71bc78bc399f19ce21743147512ed93e3fd3ca2aacabdd80b

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9190a5027dac8b89f592746d492add079583a20eb94a9cb82419443ed686febc
MD5 c609db3204e7236917a0b3b71fb7153f
BLAKE2b-256 013f4699cc0a39edf60e3dd451bc71491ad2765ff2dd503b4cf14c6d67fc0698

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b092470f2c4b9417bcbe95d1c75701ca8582302e912273f5ea06c35e2bffd9bd
MD5 99a52bbc815b442716db2421280d6230
BLAKE2b-256 a5e642976e44bf98265cbfe83aae73994ab6ee38bee80dc3156fc051fa5fb164

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.20-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59d7c07d4f83982912ef3f3ea4e3a2aa5b495a4690c4f68b1ebb0362e6c1e138
MD5 581e7c162086996fa6e6918c49a72ca0
BLAKE2b-256 d64ddbee5d302ba503f9e96f34d2b062ade94c37687f593c942df222068ca72d

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e0398b7db7c45ddaeac561c064f5480ff7f7fe0088d3e62bd45992ceed26644b
MD5 62460b73b637390af189d3ed7e5d4430
BLAKE2b-256 f239f3c30abca18977fd7107d66bd42e38f63a9ac9fd08362e311a7f2f54da2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 362.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c731ba35f805bfb340bfafbd09642c8a303e66f7057314300a0716eb9678bfb1
MD5 9028717e8fe99c9c09e3c61c2e345238
BLAKE2b-256 7324dc4aff2a3bb4d9c099416f1a3ee862d4d442ec0a34c815428b367c28d075

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp312-cp312-win32.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp312-cp312-win32.whl
  • Upload date:
  • Size: 350.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3fadf2d43ee54ef17e82730d5d1157fa71de1453d9d9f6acfbafbde36568a5f7
MD5 288d36965380a64580e570ceda96a076
BLAKE2b-256 812f52af4865da91706487a2539c70ea33f33189853908a65a06254761de9e0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 060cf497375338383cb91fec7fe2d131880d525cc7675e360b4cfb06ed40856f
MD5 45bd0ee6232f2c0c8d629c2342eacfc7
BLAKE2b-256 677268539ef9a5bc8deec834f03a01bbbeafdaab69c7bb7ffa35a68b34c619ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea997fffac16ea255237fa1422f732ddd6581b62b15d6d6147577d149b58772a
MD5 a3ebcb7fed2001471433da333d10cd06
BLAKE2b-256 b0423dde148fdd80b6a199055bc4983f932ec8221f014dc3b2db77b91bf1ab47

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.20-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab415090c48bb3222b661df94301a02655c09c33174057c6e7262896181c46a8
MD5 a2cef543f0b138642a183289d801b4e4
BLAKE2b-256 04c83091303fa9e4641500ded076bd245d703cf2712f8636905e42d7a9bcaf39

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0027a2d42d3dcbbd710f248493191a749ded0a303990d0b3ab8a7d581ca07370
MD5 d9a629de37331844f50207512ccea8c3
BLAKE2b-256 318580938ae944c9038f45a65a5e99ccf73f058415e2aba0786d899c8ea3c783

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 363.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e503d3f4112e0160bd739caec48d9703e394742879dd60a76c7f0cf14354d0f
MD5 498c9002db655a5863d2086e8dc4c79a
BLAKE2b-256 880c14d8883409c71924c50824aaba5f07d844703a635e3cc4678a3eb6523df4

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp311-cp311-win32.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp311-cp311-win32.whl
  • Upload date:
  • Size: 351.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d560a8701060e98c85dd0de753f578d4ae06c40b5874049e0627f9d01a9d5c41
MD5 d09866a36133eee5388953baf0d6f54a
BLAKE2b-256 913d6b1016698d868217e12406e2fdeccfff919d184bb193f760f9f5cf273442

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 646185f86344d7244ae399c37f37ec9672431f5b6a62bdddea8fa9dbdc079e3e
MD5 9c8bd9cb00da843a9f3522f00b9090ae
BLAKE2b-256 374dcc277595bcb94f9f077d88aa245eeb995ebd228ff225d6bcb936bc61b3db

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f91378f80a39b8b6ba750dcccd5c840b0ea2a79d94e91768f11ad02b25c29daa
MD5 fb9ebbd00176498f5bca2abec02d8583
BLAKE2b-256 f498a90cfa262ceb233f55275a4ac56d4811d83445a39dfcb5e44f2331c0a770

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.20-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19a043db574ce45d5dddbdca651ae91f0693be7cb45cea34f46cd2b2e2eba493
MD5 f6e16114ec7ab3a0fb5a66cfc51738ef
BLAKE2b-256 f41cd25c480435dd581d0d4cb288c085b4535167a9b520a14e7dc5ee3922d6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 236dc71c9f745b7cfc8e2f3950453da13886ec418ccabe853dcc0a2be7f57c0f
MD5 4064fa06697337075ae14a613b2b2064
BLAKE2b-256 5887ee0bad1c629a60fa38bb96a519f6be4877427c7cf1a681fe02840d2899d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 363.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97b026b82da79abd70d0c112492ee0574971214f75f9aec03f3bec05bb4465b6
MD5 8f7e9e2513164a882deef8ed8c7498d7
BLAKE2b-256 f0016114ae4dfa4ec7e2e83b4c9b65d56a5ade159498bafb16b60ce4013f06b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp310-cp310-win32.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp310-cp310-win32.whl
  • Upload date:
  • Size: 351.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 76522f2788e81b551c223c0e9f69f96ca73b84351231d87d6062d492b95f2226
MD5 4e9574f65be90d5e54653bcd754b69bb
BLAKE2b-256 c968c9f5bb3cecf52941c41ef1bb2cd4189bdcbacada18ce5dd08b1544b3faa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 759f0d0d4e6d1946175c968e00b58719d0a90891d88b1182245ed7592a749ce2
MD5 6c4efa16d1d4cb792ae052e88fa3eefb
BLAKE2b-256 2ed076d2700504fe3116ab8691bc6cba2b939ee8821b04e4bfb0826a0781a538

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bb8f1f1080a6981828f18a371626b064b155163842bd38a741e7114f1426a1b
MD5 12553e258a5eec336734ed70635d3652
BLAKE2b-256 f5b71888b323dce99f35b777aff15d325fe8275abb63d8942ac6386f04de9abe

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.20-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74c3ac75423e7095ebabbe6fc8493d3ed54e997d5b0e8982b99c7fd0786f48b9
MD5 e3b492b0b92a8fa48be0aea043987c00
BLAKE2b-256 56cff9073d2f1ba28a963ae34dfc0120a5961bb8659bb35071823aa562c3ac61

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac2cfcc9b09516da1766d9e4939d896a469c975ea9d617c7164846acedb9fd06
MD5 c05c05b09e09fbcf248f56a2de359ff2
BLAKE2b-256 2ddeeec985eefa6150755181a7b839ed4cea1156b00d3b0c2bb47aadca695fd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 363.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6e5040a045986987ace9b77cccd925fbbb9824a9b93ba42a73a856c8d00e1d61
MD5 59de6aea7a81cf8ca23651dd9af235fc
BLAKE2b-256 a9d3ee98e991a2a2c37eb51435a2f1d68d61a23c21eb3a8ef6deb362e705b7c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp39-cp39-win32.whl.

File metadata

  • Download URL: didgelab-3.0.20-cp39-cp39-win32.whl
  • Upload date:
  • Size: 351.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for didgelab-3.0.20-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb12317e00d05360042452ff679b7c477d0425c7170feba87b6cdbd09e0ae3c0
MD5 76b14417cf388e097cc8ee2e4413fd6c
BLAKE2b-256 59aaafdae643da2205431f183135198b20e18c867b9e112d33515f6f00a23d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8628585103c02bf5c1ad2a1880c54299eb9bdb33d68a6c8399de657b9973fb5
MD5 5c2aeeb5faf541ba4c2dd6685bc2d690
BLAKE2b-256 3af339ec819337d433b8e46c518522050dbced17acdcb211eab672cc0c093410

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 110f531d58b6d6cd7b4d607cd33c8a69412a9c2a2697006e80d5194091256579
MD5 fd4916a4b977891aef87e1bdb04bf01a
BLAKE2b-256 8e6b2832b579e38b5b092f7467ca295423e7d2d67c0791cade6daa81037f390e

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.20-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d4e1dd4631793b0be080235824bfa620995605079fc74f8e2ef81be0bed7802
MD5 afd6d34ee354bf5da18164c5091536b4
BLAKE2b-256 f330829e4cbb35277d27a3541154f74dc7f337ab6a253845e61a805ce16254a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.20-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.20-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac92416c4d83f8f6d03bc5de69712f084e16d954d8f4587ba5c00056ef0acf8a
MD5 18e7a01d10f3578b9a5ae85ae671ada6
BLAKE2b-256 92e8733f37d9c54ca977beb47d8d6f8a80d7242012d68995cf70072be3e7e7d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.20-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.

Release history Release notifications | RSS feed

3.0.21

43 files

This release

3.0.20 This release

43 files

3.0.19

43 files

3.0.18

43 files

3.0.17

43 files

3.0.16

43 files

3.0.15

43 files

3.0.8

2 files

3.0.6

2 files

3.0.5

2 files

3.0.4

2 files

3.0.3

2 files

3.0.2

2 files

3.0.1

2 files

3.0

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page