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.19.tar.gz (2.1 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.19-cp314-cp314t-win_amd64.whl (378.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

didgelab-3.0.19-cp314-cp314t-win32.whl (362.0 kB view details)

Uploaded CPython 3.14tWindows x86

didgelab-3.0.19-cp314-cp314t-musllinux_1_2_x86_64.whl (814.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

didgelab-3.0.19-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (819.9 kB view details)

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

didgelab-3.0.19-cp314-cp314t-macosx_11_0_arm64.whl (377.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

didgelab-3.0.19-cp314-cp314-win_amd64.whl (364.4 kB view details)

Uploaded CPython 3.14Windows x86-64

didgelab-3.0.19-cp314-cp314-win32.whl (351.0 kB view details)

Uploaded CPython 3.14Windows x86

didgelab-3.0.19-cp314-cp314-musllinux_1_2_x86_64.whl (817.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

didgelab-3.0.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (815.7 kB view details)

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

didgelab-3.0.19-cp314-cp314-macosx_11_0_arm64.whl (370.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

didgelab-3.0.19-cp314-cp314-macosx_10_15_x86_64.whl (373.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

didgelab-3.0.19-cp313-cp313-win_amd64.whl (362.8 kB view details)

Uploaded CPython 3.13Windows x86-64

didgelab-3.0.19-cp313-cp313-win32.whl (349.8 kB view details)

Uploaded CPython 3.13Windows x86

didgelab-3.0.19-cp313-cp313-musllinux_1_2_x86_64.whl (821.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

didgelab-3.0.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (820.6 kB view details)

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

didgelab-3.0.19-cp313-cp313-macosx_11_0_arm64.whl (370.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

didgelab-3.0.19-cp313-cp313-macosx_10_13_x86_64.whl (373.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

didgelab-3.0.19-cp312-cp312-win_amd64.whl (363.0 kB view details)

Uploaded CPython 3.12Windows x86-64

didgelab-3.0.19-cp312-cp312-win32.whl (349.9 kB view details)

Uploaded CPython 3.12Windows x86

didgelab-3.0.19-cp312-cp312-musllinux_1_2_x86_64.whl (822.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

didgelab-3.0.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (825.4 kB view details)

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

didgelab-3.0.19-cp312-cp312-macosx_11_0_arm64.whl (370.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

didgelab-3.0.19-cp312-cp312-macosx_10_13_x86_64.whl (374.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

didgelab-3.0.19-cp311-cp311-win_amd64.whl (363.8 kB view details)

Uploaded CPython 3.11Windows x86-64

didgelab-3.0.19-cp311-cp311-win32.whl (350.7 kB view details)

Uploaded CPython 3.11Windows x86

didgelab-3.0.19-cp311-cp311-musllinux_1_2_x86_64.whl (835.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

didgelab-3.0.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (831.6 kB view details)

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

didgelab-3.0.19-cp311-cp311-macosx_11_0_arm64.whl (371.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

didgelab-3.0.19-cp311-cp311-macosx_10_9_x86_64.whl (374.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

didgelab-3.0.19-cp310-cp310-win_amd64.whl (364.0 kB view details)

Uploaded CPython 3.10Windows x86-64

didgelab-3.0.19-cp310-cp310-win32.whl (351.3 kB view details)

Uploaded CPython 3.10Windows x86

didgelab-3.0.19-cp310-cp310-musllinux_1_2_x86_64.whl (808.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

didgelab-3.0.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (804.6 kB view details)

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

didgelab-3.0.19-cp310-cp310-macosx_11_0_arm64.whl (371.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

didgelab-3.0.19-cp310-cp310-macosx_10_9_x86_64.whl (374.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

didgelab-3.0.19-cp39-cp39-win_amd64.whl (364.3 kB view details)

Uploaded CPython 3.9Windows x86-64

didgelab-3.0.19-cp39-cp39-win32.whl (351.7 kB view details)

Uploaded CPython 3.9Windows x86

didgelab-3.0.19-cp39-cp39-musllinux_1_2_x86_64.whl (807.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

didgelab-3.0.19-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (803.5 kB view details)

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

didgelab-3.0.19-cp39-cp39-macosx_11_0_arm64.whl (372.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

didgelab-3.0.19-cp39-cp39-macosx_10_9_x86_64.whl (375.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19.tar.gz
Algorithm Hash digest
SHA256 56721dc3efdc57fcca3ea342ca56ebf017d31728d6068e25e5c03eb3eeef32d9
MD5 583d270bc6ecc6837bd166240603e74d
BLAKE2b-256 fa5549bd4e5de533df21afb2eb8a6b337749c168d86c0e83cbcf53effe844973

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a61e0e5d1a269a495fc624d52a7a90ba03277e639310409d827a49d413cc2074
MD5 f3efd2c8661112e8a21f0c114ab52257
BLAKE2b-256 14cab0b61c451aadec48449d9d165b850d8495d3ed94a53df4389443a977e783

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4d8615880d395cb3df4aa7351dc858da337216f4df4d4bcd4558e1cee426deff
MD5 04bf9cad99ccacfe2f74f44c340a13e7
BLAKE2b-256 484fb37dde68bf4058bb12c364f2340015b489ebcd2de4a6af87896d71fea34d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b95b6c63b6a115400bc429d85f116706a5dac99d93a1be1b1f82fc4bd9de8cf
MD5 1c24a63df8fbcb3b9753c77be1394b22
BLAKE2b-256 d8bad0165382b0cc829589602b78d4e45b841f450b8f0de36dfa9f11ef3ec831

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-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.19-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 332e749f7d2d5cd9dc068c25b4218714c1b46c3cf2b6ad586b65b98b89e6e179
MD5 3aea479e9450a993fdc1d1de24d07a27
BLAKE2b-256 aa24707fb09e1fbef1ab53d65c01949f57f1b63fb8e3d372484f303adbd0a3bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.19-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f0dd9ebeec38f7b575e98bfb88309491ca8ebea3337bf0a0209e818e325cc00
MD5 17ec0c96b23132a3f06330f8540ddd6d
BLAKE2b-256 1c51a7fa8bcaef45e3cf0839185e25eaccb765961d6873ce36fc4a52d76e95a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8e44d2e0d9673b91dba1cf2bb99944d044a5a4b0080fa6824f79c405cc9381dc
MD5 8896047b92a964d3a06a8a71add75d53
BLAKE2b-256 50e1f619b87ae3c4279d64af1d26f2bf4a2df680ca393990248fbb9cfb927dd6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ffca36d7aedf7d56efc78dcd71a5b7b5d0076e9755192cf65f4836c65fe08c1
MD5 b0c68558f09f8f1bf090e11f33744e24
BLAKE2b-256 13d0191edf4a68a54199a340f306256e241890c294cd32391758472bd13a40c7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 62f7121526270a5629979ba54ff1d9aa661bd21d0c2e19f77494203df62ba2cb
MD5 e4e7aae484e413260629b42d807454a0
BLAKE2b-256 1b5c4e457019ee2f8d13e135dcd7fbc82c98cc891c82cc3c382b314f814b08bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acf6071e4bca8ba20e9a25d3877a71c8959c4df4a3d013cfc1537b04be818558
MD5 8046917ff799b7ffbacf967d7d5cb073
BLAKE2b-256 5df4b4c00e016c66b9adc824f1149e925575c182238598a68f9dddea282c6091

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-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.19-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a19f1d0fc994eb5f236a10e9c5a46d85afece59750721795ac42463032fd8a14
MD5 e479c60177938f34bfe4109a4648a838
BLAKE2b-256 7a91dd19f3047be57dec2f3f60cae3f2d9141894c52d7574d184376af67195bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.19-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2425f613b7cdb41285b6e6ec5ee68e115df406479c461c74f6662cab4d9e2775
MD5 d109d958c48cfb70513f4c6e73ce9a75
BLAKE2b-256 f6b7150b47a96a0c1c0d59b97caeecac00cfba2207b876542c7b3ad64aac464d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2a218f6f6b2a543afe6c7d01f0ca27c9b06bb9e633d77f57d5413caa10cd8f17
MD5 ef74312d04e012ba55c223a87e4f9419
BLAKE2b-256 5fff853483354419bb57186d8d584a2a75351ab32362230b513a775e23385bda

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c70d96a77ac9939b2e41f9c477bd5c8eb0729ed0b2b33d2b76500b5f682f455d
MD5 1fe25443a85837a6392258ce49cffc29
BLAKE2b-256 2807bf1ce9839e5f220068838523196cec964228f25fe34945a3b391c9f87746

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b0301ac28326e49c0efcd968412164bbcfa0eac9e7b5cd493fea04d8e82129bf
MD5 531070d61c1762916de7a3717b32437a
BLAKE2b-256 72d9e90b29860d5cc55a0a7c7c3a67270d6e5049c0b4ad57ca28419bf128c896

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1f96e2c1afb67e7acbaa30ac7983bc32865216277b9f8c6d51edda2acdddfe0
MD5 4212d4fd5d4e0c900a2d5675bbb2bd8d
BLAKE2b-256 7fe338d518fff9a6f85ee4a67c63f5dfb76d8604b9e811db97d5448c924da8dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-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.19-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1eba71e7b8374ce0fc7ac72902f341ade83a25307371833664d3ebe500b610c8
MD5 c1729f81d8332d25a543a0422d257d7b
BLAKE2b-256 6d178a67dfe3330f6a954c5592714459402435c9e44233a9204617a97b2f5a72

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.19-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28e773a11886da0791ca8d5d188f2cde022a13a088d6f1a0932ca5a3c730fd27
MD5 627cba6cb79856ac94ad9345783c9a62
BLAKE2b-256 3d9b2d82a2f09b98a218dffa42f735eda44045e5dba0ad1686f302dab6b6a565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7466d4707f27a219e8b562f56888bbd0d2db868b726837a175575f3d6b46c583
MD5 bf4e5b25c2ad83d5c38042730060eda3
BLAKE2b-256 ac1d39463a60c1373f17b4e7758957617368d3d3f89796d4e9dbc845de3008e9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a3dfe465399e4eb5d6e2aabacee37d062c23763be7e0bb08fa133ad98251d08
MD5 b1e9fadf658e25fb8b3a9dd1379c29cd
BLAKE2b-256 dac5ed8c000d1917756953ffa600e3999d56784fe62ea466aa1962c7c20b3b93

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3e8115c6f4098cfb9564d7b05bcfe28f851d6c471ab0c5881f895dcd2b063bf0
MD5 04abb6e265d2e08eab8f00d7ae96fb12
BLAKE2b-256 764edc8c45a94cb04ff42b41df4c0060e018126c2282379589b78891c9e67c42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17b49e5df843ddc7cb3e2f4ab138fccda847d1c1d21809445bfa1002b67ce327
MD5 35f1fa5b5b7e9bccc40380a8720ba13b
BLAKE2b-256 2fe1be00eb442aa984dbcc9397912fd713dac14cfc53d033d329057cac756258

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-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.19-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1edaa51fd4c676cd2f1e53be290bb4190375dd6829a138bdfd546b15e8c351c6
MD5 49193af33c74990c4a0c178225a1c2e5
BLAKE2b-256 2fd31f15917a1eee0a95563f19fd4ad710cd7df039045b738a6048655a4202a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.19-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ec19862d55131a31a716709375f8ea80dac9eee97ae41fa5bcc82534a4c4c0c
MD5 b073f3e9b14130c8b524f0ac6523a8aa
BLAKE2b-256 087284431b31a29e7b433bc2658530c2d3b307dccec13b3568c2c678eb6881d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 39ddac71481e7ac1ef8d8cb54624a42d6c0fe9f54f4edda9240d36b7b4e85071
MD5 88af7491e08ff93dbfcdabc3ac2978e7
BLAKE2b-256 7faf3f371dc84a7e1ad2ec529cadf98ee974fa594b39baaf8ca9038ac734d5d0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 033cc60d866ec96b3364a1fc4f3fd28fcd806fdceb9dd0757f82a29814a35ce9
MD5 329d1c2bc6344ee7f8e7da9ebcb2ba99
BLAKE2b-256 b3489289642d0b16e9b1a0cee685fc5adab955a8aaca71e4e0525ec04e7a06a8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c0fddcc54c5f5e5307bc9d983f0b2bd2d1ae6101003bf74af06b9921d0874212
MD5 0af4c43847c0f6766b98a4c03636cd8e
BLAKE2b-256 a996af5e27722cc784dcdd0ea844842f6a5d3afdee05a02c1acdae8ff0c63c1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7afdf1932d1eced419c575288a95007d067d31ceb31e51d7b8971d3ccd4f562b
MD5 bdf89193c19b4b2fc773940680019669
BLAKE2b-256 0e094613b944dacd85c7a1c084be18e3e801b102c2c82644ecf61341a8dcdccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-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.19-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c8c24e751f8d0a189e19fe737e4f88670bb32617d84633653cbcff4d07e1566
MD5 0bd6838f88f754d66d5f2364b476c6ae
BLAKE2b-256 9161b2f81891dcb1e4da1f04242ed82f112e3dd45d0b92fe9920014be50ed3cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.19-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69b4a0059fbfc42dd780eca21d4a57a0a4b6cc438ae1c633312cc341f06c2f6a
MD5 f52ea849ead1ce2f88a7e6aefa3a95a1
BLAKE2b-256 c35768082b1bbf04568ec85f8d53d3fc4f0d2d6d9d760ec4034f501c3b7b8b49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 317ad02f9daff20dbe73783b264cb55fea13ce6c7b366182836ab4d6ba3126dc
MD5 b57d59ca14c53cfa5f569c9cd78599fd
BLAKE2b-256 423e733aa69b9cc4308fa6c6bfa78f5a2a9a86e264377ca761dea832d0503c48

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 785b37d2c706682e1e86b6f07f8f79570cc4bb3e3a564a5bdbd4cfef77700cab
MD5 97012adb342ded7b9af77783439d2c8e
BLAKE2b-256 9f1a5b0ee00a7b32c30e01c22962fa5f511869a8dd53d2447b67768fba412d8b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9ddd34d89d9cfa64a8656d619915dd19071d026261a28a39fe34f98aa19ae419
MD5 9ccb541d8e6c3aa86451b840395e5c07
BLAKE2b-256 22b0f570475c37ab126c4b709e7a624e8c5a0e9253fb8f4f01583b92643937a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e55c2d1f3b4b044858b4169f312bb2b702cd83a7420f4074c76549f423bdcc21
MD5 8d3e43af8412e8ec8fe9d91f01f50139
BLAKE2b-256 9fed600526b3f83cb1dc79fd3e14b626c6a78ff3aa03a54cc583f23b95348d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-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.19-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61b9645c9376629eda1a737c05fbd1bb6625d7a29c29920fc89e9e6fe86f0913
MD5 8be36aad641aba20adbbf20d4c598886
BLAKE2b-256 6a70f030aa5efbe3b2dbe3e4870dc3667b9aa7031256cc30847edd80bbd4fc5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.19-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c1127ded4cc59f88e12e05a851af4dd33d5606ffc3d91150d8ae5291eb8a8a6
MD5 b553bed4263c4fd5c4f14a34a20444c6
BLAKE2b-256 a5caf6d20bacba7002d38785f10044077a2bb8e8ccde8f0b65e4427be790d50e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92d2966476722e0e22e751e5219a8e16272bce01a38301a06914e9cba0d130a8
MD5 e5d98b0d0377499687da3032ab86f14d
BLAKE2b-256 dad9bef3a600fa7169edade5e997e07b62f085dc956d1afc93b6b08ffc128e1a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 593aad3d9ffdcf32b22c87da8840d0d2f68a795750980c53f06b8acaa79b8eb2
MD5 f0841a1a3fab41761030daa3adecdd6d
BLAKE2b-256 2d4cf7edc9ad01682c244a978e5fe4f104059fda99050904559aea5866bfb37c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.19-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 896d77489f218488cbc660da1bb559925b8ebd18f90176022dd2ddcca2b45685
MD5 f4fdddc6635987649e7081dacec6bb90
BLAKE2b-256 75b6836e8e7c93958cb37d657c338be5221699c6d07ed47acca27c5ce61edd10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1c33ebfa1b08bfcc7744c9fa047d4f95515d89c61be5d68b39027da20037407
MD5 6bb01931c99e83b5045095f53f9a4262
BLAKE2b-256 4c9553122522d39d00f6c81bfecbd5f6e4fbf6bd16ae0a41baaf2d870c4f64b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-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.19-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c583a87ec42225bfa6b6ba6660cb7e3b1ae6291edfdd24959b05bbbe1e4f3b91
MD5 c20e469462084ec6b6b3c9592ad75e10
BLAKE2b-256 d3bef8addc7e1d49303a13cb388074540873a1dfff3c59a4827d268e921c2335

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.19-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.19-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.19-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8952da77e61f38c37aa80b737414a540085496bf89c6fce7e45ee0f8c8926139
MD5 ec52870ef92ac3d687f0e6cb79ee02c5
BLAKE2b-256 c86f719ca7c2f2a76d67864d7a81bda0712d45f41e933466ab5ace998fe420c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.19-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7b1b677616983184cda746f0c5acb00d8a90735f7f274f668dd76b163484199
MD5 6e57ababc5c3e5f6fc95176ec905d6f4
BLAKE2b-256 4129ee4fb81c601d74be1327c737048c826d3d858c1b53ac6e3e3fe3e559b918

See more details on using hashes here.

Provenance

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