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.18.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

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

didgelab-3.0.18-cp314-cp314t-win_amd64.whl (253.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

didgelab-3.0.18-cp314-cp314t-win32.whl (247.6 kB view details)

Uploaded CPython 3.14tWindows x86

didgelab-3.0.18-cp314-cp314t-musllinux_1_2_x86_64.whl (534.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

didgelab-3.0.18-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (533.4 kB view details)

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

didgelab-3.0.18-cp314-cp314t-macosx_11_0_arm64.whl (254.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

didgelab-3.0.18-cp314-cp314t-macosx_10_15_x86_64.whl (254.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

didgelab-3.0.18-cp314-cp314-win_amd64.whl (246.1 kB view details)

Uploaded CPython 3.14Windows x86-64

didgelab-3.0.18-cp314-cp314-win32.whl (241.5 kB view details)

Uploaded CPython 3.14Windows x86

didgelab-3.0.18-cp314-cp314-musllinux_1_2_x86_64.whl (527.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

didgelab-3.0.18-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (524.1 kB view details)

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

didgelab-3.0.18-cp314-cp314-macosx_11_0_arm64.whl (248.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

didgelab-3.0.18-cp313-cp313-win_amd64.whl (245.1 kB view details)

Uploaded CPython 3.13Windows x86-64

didgelab-3.0.18-cp313-cp313-win32.whl (240.6 kB view details)

Uploaded CPython 3.13Windows x86

didgelab-3.0.18-cp313-cp313-musllinux_1_2_x86_64.whl (531.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

didgelab-3.0.18-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (529.2 kB view details)

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

didgelab-3.0.18-cp313-cp313-macosx_11_0_arm64.whl (248.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

didgelab-3.0.18-cp313-cp313-macosx_10_13_x86_64.whl (248.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

didgelab-3.0.18-cp312-cp312-win_amd64.whl (245.2 kB view details)

Uploaded CPython 3.12Windows x86-64

didgelab-3.0.18-cp312-cp312-win32.whl (240.7 kB view details)

Uploaded CPython 3.12Windows x86

didgelab-3.0.18-cp312-cp312-musllinux_1_2_x86_64.whl (535.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

didgelab-3.0.18-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (534.0 kB view details)

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

didgelab-3.0.18-cp312-cp312-macosx_11_0_arm64.whl (248.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

didgelab-3.0.18-cp312-cp312-macosx_10_13_x86_64.whl (249.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

didgelab-3.0.18-cp311-cp311-win_amd64.whl (246.7 kB view details)

Uploaded CPython 3.11Windows x86-64

didgelab-3.0.18-cp311-cp311-win32.whl (242.2 kB view details)

Uploaded CPython 3.11Windows x86

didgelab-3.0.18-cp311-cp311-musllinux_1_2_x86_64.whl (525.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

didgelab-3.0.18-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (522.7 kB view details)

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

didgelab-3.0.18-cp311-cp311-macosx_11_0_arm64.whl (248.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

didgelab-3.0.18-cp311-cp311-macosx_10_9_x86_64.whl (249.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

didgelab-3.0.18-cp310-cp310-win_amd64.whl (246.8 kB view details)

Uploaded CPython 3.10Windows x86-64

didgelab-3.0.18-cp310-cp310-win32.whl (242.6 kB view details)

Uploaded CPython 3.10Windows x86

didgelab-3.0.18-cp310-cp310-musllinux_1_2_x86_64.whl (508.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

didgelab-3.0.18-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (505.5 kB view details)

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

didgelab-3.0.18-cp310-cp310-macosx_11_0_arm64.whl (248.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

didgelab-3.0.18-cp310-cp310-macosx_10_9_x86_64.whl (249.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

didgelab-3.0.18-cp39-cp39-win_amd64.whl (247.0 kB view details)

Uploaded CPython 3.9Windows x86-64

didgelab-3.0.18-cp39-cp39-win32.whl (242.8 kB view details)

Uploaded CPython 3.9Windows x86

didgelab-3.0.18-cp39-cp39-musllinux_1_2_x86_64.whl (506.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

didgelab-3.0.18-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (503.3 kB view details)

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

didgelab-3.0.18-cp39-cp39-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

didgelab-3.0.18-cp39-cp39-macosx_10_9_x86_64.whl (250.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: didgelab-3.0.18.tar.gz
  • Upload date:
  • Size: 1.4 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.18.tar.gz
Algorithm Hash digest
SHA256 34298bb9c100401001f5526f6141ddb68e0e2025884da33215aa024f5bf1e6fc
MD5 ed445ed80e2f8096490f1f1c80d0c738
BLAKE2b-256 65bf7116222c3e5946e102d2275f981379c3502fc78cc2809e51b865efcd3674

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 253.3 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.18-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7b80a59ba3dd5de1b3256033926e5d2a7bc89dcc901d809f468b16db32b81652
MD5 861c218d797a378b63ac3d876eb4580e
BLAKE2b-256 cf8f957e1fe47518afe613c32cd6590fc4dfb5dc73e7f538d213a76eaff22b16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 247.6 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.18-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f9f73ae94dd6f50536fced17b9ad75b20aceadd743f1eb24e183f220bf23f446
MD5 96e6d176d4f616bd4d9df5c364881fca
BLAKE2b-256 6bbd4bb658a571a20fdd46db43d968761ffdde1f0c42c1614905f53d6f0ea577

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a67343e33b7386b34c9bdb6bdc55b37fee7cb3d326fd02747565f243dc89191
MD5 a76b7fada323a3e20123ba57440d4c51
BLAKE2b-256 f1d1f47135459c04924a9efb2fee3848fd2585c2bc540edf4533e55729b9c8cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.18-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.18-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.18-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 55d1d258f59a23fd656f5bf18a7908718507fa00edd47801df2c12fab136a204
MD5 f72665379ed5cc697e181a168c1ea75f
BLAKE2b-256 b0a87696fac83f01daaca4b4d7f7b104c94d6f7f37143da2e2259b67e8014a0f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 933e966b1fe3e7ae95787dbd90eacad6eaec041165046a8851511e2e078f7b13
MD5 aafd1cfd17d4a7794cca8ba927ad2e3a
BLAKE2b-256 e7eb84fc8c6d76d72ba7f34d5d8e36ca005c69d096b5b4698b4c73177a5dfada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c1291aa58d26e0dc5cf85bff247a690bd04257ce62b816fe397f5b6960a98a64
MD5 0b491e46b7355d2a672c0d8d3c9d914c
BLAKE2b-256 54f47bca21deb77bf2d7d1fcdd8b588f7580b91fa5229d47c7b07239fd9e18dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 246.1 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.18-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6bacfc85dea810a17584f997cd799ac18c139164bc6b6f341a21ac7e15ca1d43
MD5 582994b95d0771e7c74d01b0d3525350
BLAKE2b-256 8ee4af420cd715712eef7342c3ee19ba20bb8c46220486da61966b065bd4f6cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp314-cp314-win32.whl
  • Upload date:
  • Size: 241.5 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.18-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7616e0b93d6f9da29c35ede456a06a443a2502e18e311de82d44d56fe9ac212a
MD5 53616649cdbe0692b99b4c6eaaba3ccc
BLAKE2b-256 351a3201c259b041cc819d6ae193f4f3718a18b9fd8985c28299f8c15bcb95b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed1848bf6423239d0c1e46170cdf7c875057468c82dd47b7dcecf3786ea5efea
MD5 6906bb2ebd92558c3805b499e4529c2b
BLAKE2b-256 b6b46188c5caa706c393e33eca7c704ce039135aea2e3cff759952084f466aae

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.18-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.18-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.18-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1f6f377e80b07a41da881b7d159d951887c3295cdaed1a500411231e66a113e2
MD5 97cf655121156e16ec075600335be32c
BLAKE2b-256 cd8f6c50d1d87f2311b2e4aeeadf23bccba145738e1700866798192e36a00070

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b616ae6cc74a1386d73249c230dd1dac4afb96438e1ffb226f1d8c962f9182a5
MD5 3e848ab373447269ad12c3fef9efde6f
BLAKE2b-256 237848eeece96e7a4528693d614d972dc496fb8101ab1a85197a364cab7a5656

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76400e99db822e3cf22c0b36a99318103ca23f7c0542fceccfeefa54f4459b98
MD5 6e0f9dbdfcfec667eb8e04a1b4741c55
BLAKE2b-256 900acf85b80776ea8d40cc4bd8fd913825ed3e7c6004c96a83204823c398f879

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 245.1 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.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 654fc09a9e427a2499c07f330f1efc1bcddabe8e7577cb27d7872ec9b3094bde
MD5 abab4a8d33a21db0c0725208a796fd4d
BLAKE2b-256 7bf5484b0d005d1892c7b65993fa2cd731f26ed0c49785d03466f78726cc8c0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp313-cp313-win32.whl
  • Upload date:
  • Size: 240.6 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.18-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8787141e923deef7a95c3b4be8ae010d73ef9c1f16831b4fb16c8bd43e8f5947
MD5 99376854cd0087f4478f34b750ccbf1b
BLAKE2b-256 0eac0eced8965adfe7fb871542887c06aac529c8387238fa02d6365f7b870db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ce49a406ac8c1ef8c80f02c296fb7c532d0e9d1c529ea49d4aa3d5ea05c128c
MD5 65c7d38c6e832260f9defc5da71af737
BLAKE2b-256 f39426c06276f425646e712fe3963eae2125746c023ec772490b36d504a7a136

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.18-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.18-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.18-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f1773abdfa35c325ca1effd6fdcbff58ae754cf5b873eaf33d36b6305cd81a5c
MD5 0c2ba0a2608437404a2d3495a2f26b9b
BLAKE2b-256 a9b847ed5d735751c1614f0d917c3f4a5f6e495c3eb50a8584a76917c57ef07a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3dca1836242fc8a5153ece1f03cd8a6e01d0dc67a002a12774bac1b5702f86e
MD5 bed0e30874c782447934751e1e6bcab7
BLAKE2b-256 923288f145f7742db64968cc99c4deb27720e28995f93062895ffe6917d1ee9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5dbf009e172cb6fd6bf00c62ed9fc05bc1327b6de307c8101c81b703da71ef3
MD5 fd81753600fabc45ce7d2371aff63a02
BLAKE2b-256 8c1ecdef542fde85e30bf51ef650ea4730cb72df38de00698c808f03b16348ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 245.2 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.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b8147a40b66e737b0737d88421c3e67b27c43e680657d0077418088fc9880dc8
MD5 6e6a3bab024cd3258e813d2e8cf8d798
BLAKE2b-256 c71eadbfce58e2e8ad9ec45d60cb504a01c1f2297be8c288320fa4f698357b00

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp312-cp312-win32.whl
  • Upload date:
  • Size: 240.7 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.18-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8b2fe037932d74d30c923cb77c07c15181aaa150c2c29bcd5d91dfc615da788e
MD5 122ece58f474b6c395a6f3463c0d8f2b
BLAKE2b-256 5acf754a4489da787345942e6f9388220c8770f961bd1a8c8b70380d872dbfa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f973ef279ae2cf9271a18afb92f2de47e067a2d823fb32cbd0c60c261cf33ae8
MD5 66006054e3711cb6d29c11a85621b199
BLAKE2b-256 661808491530635749ea96491e0c16d8117544848febba4300411d2961e44f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.18-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.18-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.18-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3fbe7c9b673bc04ea4a00a08583a05c4ec38bd4bd9dbfc53c1898f0e52b0e800
MD5 5733a4b18e668ba8955eb03babdff248
BLAKE2b-256 6317089b79667f891db9b056dd47fe43b7ca0fc6721d96b4074f96b9010ac899

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 add7e495f14a7ac74698edb3f994fe8e23937f1aabee2f05c6e1a6bc381eae76
MD5 d5578f2bae298b2cad348292fda451d1
BLAKE2b-256 75d7cf99dca6e7460efd221a625fd283bdb0cd5ffd46b8a46705a8a00c951b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2a2cc999a7f0c37f647742993cfba4310b0e640bfd1d48284f16636a134768cf
MD5 0774b006292e59b50dcb4938a17d2fcd
BLAKE2b-256 b22a196ebb45769ac7f4ef3ac50b7bd03acb86cc6da777de793165f67f430bd8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 246.7 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.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 41e87972d2d3a7732a0b8fd325d5d607dc72367b70ede77eef3e3a16df1fbc36
MD5 fc8c44a7c8436603c52566a517f2304e
BLAKE2b-256 9cb2bca571af314e5f536b2a28822875b5eac2359e4542ce534cf135f0645686

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp311-cp311-win32.whl
  • Upload date:
  • Size: 242.2 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.18-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c8425e107e6e2c45c6c0153e41fdae7da3cf8abde86bacedb866c74acc41856b
MD5 8a3faf2bea38aa6eb72c1bb1f90a3c0d
BLAKE2b-256 6633f516ee2e3e74e9d6c84878c7a0fb8e403d96b6750f70caf41136411849c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b431c216400baa3cebe8213c8e62ed6710b1d6f7fa11b5d87b82cbbed6c59042
MD5 6ba894911e9aa47ffaab37b0e3919e33
BLAKE2b-256 02dda4fee294837c2afec07b0e6492f98f5cceb4768fd0bd5a22839262724f58

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.18-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.18-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.18-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b337d92c13a778f2168a6352d72294dcc0d0ac8f0d01b011cdc6c05c92f63155
MD5 b7787b0943ab35c1cd7caf4977157d88
BLAKE2b-256 e38832cb5b3bef275be74681f34048a1ee7a4bb71813449d65188b8037b5620a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 934eafcb934bd20ced6b0272521c93b85230ab549e2468917d129e98984bccfd
MD5 7760b3ce256409db82cf642e63d078cb
BLAKE2b-256 43c94c016c99a5f6907539580c88b4bca709eb2e0d4872d8d7f8f3e91bcdb5f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32eb1acf821c26d3e1a75fa072c45c5c2c4ef01fd5e50b1f2a4ff8036bf75144
MD5 8017b57192a7805d5e392bf7e2336ec5
BLAKE2b-256 a4fcff42e6f32c51a939dffc76f1f416fe6238c750eb52e473e60d00192c586d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 246.8 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.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31f9c82fce73609a14762fd98692837b28f8c1527cb08225c5002b1809a77808
MD5 8ecc447fad1ef073c5171c3969ba9cf8
BLAKE2b-256 e625870e87030de01f61486cdfeaaec37f0263755c0c85b3a930ceab62f0f091

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp310-cp310-win32.whl
  • Upload date:
  • Size: 242.6 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.18-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 48642a2aa4b12a56e7fb959c7d4f0fa6c34363510ead9c7338e2c8556e0e44f2
MD5 04a8bebcc1961ac7a2954a6e9205eeff
BLAKE2b-256 2393a000ae2dc94ea69e71b4f46bd2295bfa9cb6f043e1ddbe11db5af47562ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2d9372676b0ba4cd01d47821110137fe7ee1978cd255bfb8f9b440629fb298d
MD5 5e4946a012b863babf08052811061e37
BLAKE2b-256 9fccbc8becfeeaa82708cc755d1a3edb64ee2740bb02d47ca38f3bc12289e9c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.18-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.18-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.18-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dd9e2b3b7f4f127c51144812c054d7db4461329d9b9738f2f9260a2fc70ff346
MD5 cd38f55cdd840b268a0f9eea922946c5
BLAKE2b-256 aa30404d7caf2010e707c2655a4482277c747f3ad31acb79e30b03e95cf602c5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c566fd4666ab6812b68f7aa395c4498437a7fb19015a392f4a162811c44cc23d
MD5 7f114508f74e617659c04980212deb29
BLAKE2b-256 c7d5a685195ac4d7cbf72822c87697780b7d8720b9c9fd58bf5e1b218c0db0a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38732473533b1600e9966e4cb56cb94e3322bf48adbf641cb28b9c05c8e1a235
MD5 65c59353ea0c1ccfcb7ac7c5e700cf82
BLAKE2b-256 7450d6519dc9225394d529829e6fe88cefa096ba44eef7cdf032739346b0c5bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 247.0 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.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d57e48aec7d8cdc3665c07cc3af2819dc12c933d846b1a9090ff98c4ac91a23f
MD5 02944a7fb0561ad5f72eabedba612c70
BLAKE2b-256 cc105fa31384a1b8da3c99e06a9da986794384a62debd7da660762cf30ddee5c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.18-cp39-cp39-win32.whl
  • Upload date:
  • Size: 242.8 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.18-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a68a17b873979c64638919b2ec859a3fa1514613ad1416e7445ac4f96b0a90b1
MD5 714d49cfd7a986873e2760f0692088ad
BLAKE2b-256 73b7a97a58b8ba39b0adb4500c69e6622f7ed970904e3e772465ffeafea441cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26061eb0f43e3367a0767ef75db02bc558efe536b1e3d0b2d53838f2ab079624
MD5 cd7f5777cd463bd9190cf4aa059e1903
BLAKE2b-256 610aca3e85ef2b9f64b9d5bc5f4a89dd17a592bd15aa175318db23a4868c1cca

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.18-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.18-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for didgelab-3.0.18-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 73db0e7bbad73ad6eb87cab3be1c1a5a240faefbfee6e8d253b3be44770230b5
MD5 4ba9b38945e5e950663964fd704f8455
BLAKE2b-256 8fc21257dfd077bce3f44191786ce8e0aba760408561fd4cb7e272b928b40e78

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28b081b0744082e0551a401572112b2f8fb6ba229dc03972e1da9e9f3f7da23a
MD5 2483957968a3ff1e84f2d325d9059903
BLAKE2b-256 d38c3de86dc1463dc0fcd66922e80444e8c8910cf7448b5c49cd2a8d11445ff3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.18-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c459746865344fd33f24ccceefc2a5ac873c599e7417f2719820c16da9ed7a70
MD5 5b5824d0e3594c2b3e72618932ea533e
BLAKE2b-256 1fb38eb013606ef71cc9420567fec8816cd58e01144b09cf8f8117af4441858f

See more details on using hashes here.

Provenance

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