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.17.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.17-cp314-cp314t-win_amd64.whl (252.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

didgelab-3.0.17-cp314-cp314t-win32.whl (246.5 kB view details)

Uploaded CPython 3.14tWindows x86

didgelab-3.0.17-cp314-cp314t-musllinux_1_2_x86_64.whl (533.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

didgelab-3.0.17-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (532.2 kB view details)

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

didgelab-3.0.17-cp314-cp314t-macosx_11_0_arm64.whl (253.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

didgelab-3.0.17-cp314-cp314t-macosx_10_15_x86_64.whl (253.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

didgelab-3.0.17-cp314-cp314-win_amd64.whl (244.9 kB view details)

Uploaded CPython 3.14Windows x86-64

didgelab-3.0.17-cp314-cp314-win32.whl (240.4 kB view details)

Uploaded CPython 3.14Windows x86

didgelab-3.0.17-cp314-cp314-musllinux_1_2_x86_64.whl (526.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

didgelab-3.0.17-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (522.9 kB view details)

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

didgelab-3.0.17-cp314-cp314-macosx_11_0_arm64.whl (247.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

didgelab-3.0.17-cp314-cp314-macosx_10_15_x86_64.whl (247.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

didgelab-3.0.17-cp313-cp313-win_amd64.whl (244.0 kB view details)

Uploaded CPython 3.13Windows x86-64

didgelab-3.0.17-cp313-cp313-win32.whl (239.4 kB view details)

Uploaded CPython 3.13Windows x86

didgelab-3.0.17-cp313-cp313-musllinux_1_2_x86_64.whl (530.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

didgelab-3.0.17-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (528.1 kB view details)

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

didgelab-3.0.17-cp313-cp313-macosx_11_0_arm64.whl (246.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

didgelab-3.0.17-cp313-cp313-macosx_10_13_x86_64.whl (247.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

didgelab-3.0.17-cp312-cp312-win_amd64.whl (244.1 kB view details)

Uploaded CPython 3.12Windows x86-64

didgelab-3.0.17-cp312-cp312-win32.whl (239.5 kB view details)

Uploaded CPython 3.12Windows x86

didgelab-3.0.17-cp312-cp312-musllinux_1_2_x86_64.whl (534.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

didgelab-3.0.17-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (532.9 kB view details)

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

didgelab-3.0.17-cp312-cp312-macosx_11_0_arm64.whl (247.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

didgelab-3.0.17-cp312-cp312-macosx_10_13_x86_64.whl (248.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

didgelab-3.0.17-cp311-cp311-win_amd64.whl (245.6 kB view details)

Uploaded CPython 3.11Windows x86-64

didgelab-3.0.17-cp311-cp311-win32.whl (241.0 kB view details)

Uploaded CPython 3.11Windows x86

didgelab-3.0.17-cp311-cp311-musllinux_1_2_x86_64.whl (524.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

didgelab-3.0.17-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (521.5 kB view details)

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

didgelab-3.0.17-cp311-cp311-macosx_11_0_arm64.whl (247.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

didgelab-3.0.17-cp311-cp311-macosx_10_9_x86_64.whl (248.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

didgelab-3.0.17-cp310-cp310-win_amd64.whl (245.6 kB view details)

Uploaded CPython 3.10Windows x86-64

didgelab-3.0.17-cp310-cp310-win32.whl (241.5 kB view details)

Uploaded CPython 3.10Windows x86

didgelab-3.0.17-cp310-cp310-musllinux_1_2_x86_64.whl (506.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

didgelab-3.0.17-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (504.4 kB view details)

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

didgelab-3.0.17-cp310-cp310-macosx_11_0_arm64.whl (247.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

didgelab-3.0.17-cp310-cp310-macosx_10_9_x86_64.whl (248.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

didgelab-3.0.17-cp39-cp39-win_amd64.whl (245.8 kB view details)

Uploaded CPython 3.9Windows x86-64

didgelab-3.0.17-cp39-cp39-win32.whl (241.6 kB view details)

Uploaded CPython 3.9Windows x86

didgelab-3.0.17-cp39-cp39-musllinux_1_2_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

didgelab-3.0.17-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (502.2 kB view details)

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

didgelab-3.0.17-cp39-cp39-macosx_11_0_arm64.whl (247.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

didgelab-3.0.17-cp39-cp39-macosx_10_9_x86_64.whl (248.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: didgelab-3.0.17.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.17.tar.gz
Algorithm Hash digest
SHA256 7ae38ca805ee30c28030fcf0c8bd812ea0fa069710ea0837cff5ef5f6fc3f5a0
MD5 ddc465931a22b3be762715883204da3e
BLAKE2b-256 c794600540c225452f223ea9d172dc17fb51147324687422a25a474396d72fe5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 252.1 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.17-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 863ee8313d36b3364ccfee2e546ab459afc5a11a4bb6b9365590b5b0c8adb3d4
MD5 deaa67e6bfb3d264318f398dcd8fde66
BLAKE2b-256 4d28fe1e4b1f359a171895d91e045dfcaa837b49fd0e46a617879859e88e7a81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 246.5 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.17-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 19d5572ad42e652881736f403d35350cf2fe459380bdb4f14116baccc812f594
MD5 e7dd31a5748ffba82caf3431c0444592
BLAKE2b-256 725fa8dd0b430b8e13050b6794037357ca110e79095b644cd26e6a92b7807a40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e1b0b5f52fde616a90a22c8d96c534f4d5dfc2ac09f45c93178583db05aaa00
MD5 6f59cb06c15852179ca1c5fbdb9a0270
BLAKE2b-256 d398cffd8ac4545f199126dac47ddb3115219321ca9773c262403ad70ac85af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.17-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.17-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.17-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 40c94c98ca6adce90abdf2455626553b875cfec149e303bdcc9b9eb6e621f2b8
MD5 1243c48ef846324e44b73ef7c4ed411d
BLAKE2b-256 f6def72ffcfca01bfa2a3bc9e6756f2fa7449b7de0446aa4058a70b5756ed573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35be89d1c0bcf7f5b4e2a236f8578cd505e72207e4158d0ec58a91a3bcd00a59
MD5 861448a0d48dad1a5dae81b4590821c1
BLAKE2b-256 b9bf5de403bfd9633f0f216f20bee16e55d6cc3956e5d1972f60a42fb7407ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 23db7cc764c997fe664b9209db115ddebf14c67ab599779c32ee715ecb9620ce
MD5 67c92cb27131ff0ed0884046e700ddbf
BLAKE2b-256 0c14ef55249e36790f86d967b3f46d1f9a7e2ae777089aa9201f96b2fe9ad295

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 244.9 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.17-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a02d9ae24c9a74c7e794d8bd94ad218acd466abb3b2ae4c923dcd176ea9d2e49
MD5 c5125eac29f75a10d708645e40622dc1
BLAKE2b-256 e4b591da9594c983eb67ea815f3fdde9e52ac36af960d2197a32a18d4c8218ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp314-cp314-win32.whl
  • Upload date:
  • Size: 240.4 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.17-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 57b1c179b7bdbd3472f84657a4194a739ea0a2bdd6fb1cbcac106ee3061d0242
MD5 658a2d1fe968d8ec64bcd54f4ae3d1cd
BLAKE2b-256 857a3041360349d31656e80ff9f0a186e83b2883e9c09eecf47919256add3823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f0614c3f6a9fe55c002aa03f46e2058632292b86267012499cb2fa7dfeea739
MD5 95c8f50e669c8ca103c95f72f83be4f4
BLAKE2b-256 5615f6b3da1475b15758c00d3e5cf3dc262cc5a5ec2cc58e60d45d33ba853cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.17-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.17-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.17-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 14d31c4ca447986b3fec740eae55d6ffb2ab5c0cc7347ad80fca6b9f4f8dd369
MD5 b10149a46b00b5e27859fab6bfdf6a99
BLAKE2b-256 201878c2f510dc0fe75c8d30b8c96231b1ebf8bd0cb17f1adf551a9f986a58ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ae1c77ac400a8624e6f188a723dbffeb67f3c8317312404a53085e370c03d2b
MD5 738500b49e7cc31a502fadb4fe5fe26d
BLAKE2b-256 912df084ccd31a84073334909a09a8a65e274b9647d63e4499bbb9a41509ab50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8403eeb5930639d8d08aa212b622446d98b517becd13626ebea913c136faa0f9
MD5 fd759e8800e9017bd463094cd19d5217
BLAKE2b-256 2e299abc8089f2864bfce13275d6f2d5eb17dfc7e2bbffc3bc5db356ff68b3a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 244.0 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.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 df054864c372e49df1f6ee2c8e3ad0477370aa1045f353813b939a4d352d992e
MD5 13566b3bf6c9144c1f6ffab6b3d9f25e
BLAKE2b-256 4c1b8daeef6e51fc4c26a0e352b35309b3c0cde36b99c23169d2e2b99bacd2b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp313-cp313-win32.whl
  • Upload date:
  • Size: 239.4 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.17-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ba6d19d05fe0564614fc8597fc8d873648de7de0c1c81749942d0e0bb3ec509d
MD5 a7e65b92eed120b226ec37a6aec830d9
BLAKE2b-256 af7884ecb0bc1702fcb86c0d2bb8db80302afe53e4269346adda4573c92cf086

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e32128e8842eb8d413dd260ee98d7a635fbbf4b6607039ff97115e354753ec2
MD5 a96f71d0912e0f027e76d1871ade00f7
BLAKE2b-256 cba311272bc2c59354a3f886fbeb971091676760589792a34c12f8e4d26ad9c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.17-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.17-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.17-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9552a5f80b69bb469f31916b2bd82c27500869bd8a99d7cfa869d94382b2aa9e
MD5 b3b46259cdc6b224e76920cc065e9ba1
BLAKE2b-256 56ef58487376d9412862e74f4118105355e4dc983640c1347dbb3444a1cf45a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcb97e4ddf6b7a40978259900f504c21ca6695a54b3f7825ee3ed53e231f498c
MD5 edf7b36466bf93ba73415dc2dc2c2cf4
BLAKE2b-256 3aa240b44fee237c2e16c768c4facef9927afa0bacd263783e55bd2b866224f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b262dddc2acfcc83d51adb245cf39d1e54848c7ba949ea3c5d34723d0931ba2f
MD5 878a0f2df91885a20f4b2d387839ca08
BLAKE2b-256 ccfd7b8c7f8276a2d5468c2be6aa39511383e333791b4d5e845cd5a190b98954

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 244.1 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.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 826519dd684936396de1c1c8e2eee1e91ccac955440b23e306ac90b5622ca4b9
MD5 b2bbef23c9adc1cf758d505bce4f9ad8
BLAKE2b-256 e879f86d89de7250ec7c96d21ab48d65034383c4f04a150212a5f3cc2a79b302

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp312-cp312-win32.whl
  • Upload date:
  • Size: 239.5 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.17-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f326a1f49e6e327ebbd66a8d09d8b46dc1e95447251f0a70ce6e972419191113
MD5 2868a3ec75038bc39cdb3d6de8d3c9fc
BLAKE2b-256 1341809f88ff563dbf1472d11a2657153e15629814db11dc7832295272fa72e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ec8fc8590f6bac00180c1dd9eb804495f4f6797862cfd388987a6572d4de402
MD5 5715f51d1f8084d3c5f85ac80105e8e9
BLAKE2b-256 327d53dbaa1d4eb7c24109e607a442649c204c7b7eb13c298b86bdf87b1001aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.17-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.17-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.17-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 06ecbe4f517af5862794b8e18a53274a6b8176c1ccc5733c4d85db09ee02eadb
MD5 935e415d4fc27e01c384147d245acd4d
BLAKE2b-256 5ebb535f49fab1e0e59d91aaf430a1b93090fd6e13c8f950a46cc1dbfa4e7f67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef10c9243a8499431cc38bd228abaac8d2e0791385068d4ee39d5663d000caf0
MD5 8f90d1a2a0894935d62a4212b1e69b1f
BLAKE2b-256 91060315d0fe4cedfad30bea9f46e01791247cba4070d9ca9b737d082326f05c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0f6b8572bf0c09b085dd1446c25a32e1ab54454f974f4399eb92c4a012c0f704
MD5 476200c67d288485c90c1c4b7414909c
BLAKE2b-256 1b970f97ad22ae421f0b84f2ba195714d6095b8d6680cfaa86076fd4aeb6329b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 33c46489055fcbf74b328c064a338cdf9149292202b11de31e331accd961bcf2
MD5 4064599777543778f263eebb31b1e00f
BLAKE2b-256 db28069e85a782e6a1c971ac1f9c0db38e5f5ab4ee628c3fb7ad1b6043b1ab6c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp311-cp311-win32.whl
  • Upload date:
  • Size: 241.0 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.17-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7a586c1e909d6209fa5328cfbc2767789bf5956d2604dd30b90074ff43557690
MD5 254cc3766fa86354d0301caf055e334c
BLAKE2b-256 d3629af7196a8db58e7d0b48cab641734342bfd4ec51bd7e329ebef7534b80b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78a602e65e2f2ce2331898467948ba0b7d4ccfa2e347dac9b49cc921bd2e89b8
MD5 ab30924f2b08fc7d8c8c61ad208414cd
BLAKE2b-256 b1773d28c623d64ca2dce53378ecc7f2977f669e2bed4c4c1299c819a828b527

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.17-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.17-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.17-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9046eb80ed7739e4231c735409a974d8c3be00239a67a2681019cb85b70f6e7b
MD5 7c589dfed3a28813e4c8ce45d5c355eb
BLAKE2b-256 9d22d88675dccf8a4793bc0627cf2932be34fc9b03c71e7d8381e4f7c400a099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97f4571d6b9f3b36eb836cc47cb1a355f4011435e5ba28913f5d8da9d8a3bd8b
MD5 1e8716513b3cd1f79307e493a91e5473
BLAKE2b-256 578bafd8e6591d8187bc8c3492c17a4cdfbcb5c8afdb1f75350d5cb72f5d1fca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b587e4612ff64eb5eac3c111c0329e197a6276cd358f82e5a4ae643737a121a
MD5 8c4e51f2264970d9f4a1531a4c2f9a37
BLAKE2b-256 1586dde4d8bd0fc14c8fcd1d1cb38be7dc095a53ca6b73c9284131232c0ee19c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 adb3f0dc4c16d6414da3c3567cc3d01aee2c0a1d70917a21c037acd3728f0981
MD5 2e5fca63962cbe9a79136f9bbab4f937
BLAKE2b-256 4f7709278a8c4ebf7a4e9efb8058a38c2021a4b9b0d03f44c6e6ade3fef85d0f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp310-cp310-win32.whl
  • Upload date:
  • Size: 241.5 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.17-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3cc1a6f448f7f0433ad956f59af25c3e8b5f36a5aba1b6d57650b84655604fd1
MD5 a247bcd6a370da386906a70e9e30ab9c
BLAKE2b-256 f291ea3305203790e76d02300bdadb485d8906032cc01775dc1402b71fb4012c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67f95dbc9a56e7a40148da4436002dc988e8143a1bb1e0ec1d67c709a9f126f8
MD5 9d48f235a856be43fc89729b68f8fc06
BLAKE2b-256 462ef59ff9422e8ce28f05840372cac4179d9ad29a4128f7817eda7388063c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.17-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.17-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.17-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1560ca5f3e4b047a922d485bbcacaf198bdd2ca85f0906631121eb4b2b43a9bd
MD5 292a799532fac88b0a49c7c447607ba1
BLAKE2b-256 bdc9a2a37860d5268b45e7673fc93195e0c4ea80865a167afcf774a4c9a9658a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1175ad34df0f3a07fde1350768dfd9dc3428662ead5559a2b3ba5557717e70c9
MD5 c868b8f0f91b137103b26b1918987dc4
BLAKE2b-256 f7a10ee980434ea6d0e5c63a4cfa7df40f7e523e69bc465f0983f84b82ab0bed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55c20c11758e940f11ce6067640ed26a0462982869e79d34569ff2697c38e731
MD5 bf7e074da0c34ef3a1954af6b7ae71c0
BLAKE2b-256 c35fd28cd3bbef408ac22667bee0dd2b2a2ee036e5145dc941066304ad84b176

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 245.8 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.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1a3cb014e90abf50cb53a6acb4a65a3bb5314f994d6366e536bb61cc12267286
MD5 4c8d74283a4f2b91fd2eab761e6184ed
BLAKE2b-256 9101d23686d37eeced5b3e679ad80016bf5880c3b06f8ff40373fec07799ef43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: didgelab-3.0.17-cp39-cp39-win32.whl
  • Upload date:
  • Size: 241.6 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.17-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fcbe35f73f92670460a1686700e1aa9696ccded725e732c9c28dd8cd10588d15
MD5 783086da1e8d08702dddf6cd527bf49d
BLAKE2b-256 204448798741648639bd269346e3f705e5ac9c430dacc8117f7be7a4707e8846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26d5012d6cde5990f8985210b168cd7d4ecd3d5527060fa3020d9c460e65e284
MD5 825bbede2b005a9bef1ff262c252d5c4
BLAKE2b-256 ab9ddfd4f1099f9811f68eedaf6fb3ae009882c415f84a7993454cb349e43af1

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.17-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.17-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.17-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4a8855e0a17ab67fdf70a17295a5d80ffef90f6f818ffa06de1749717d85f47c
MD5 bea5a388dc45905aebeef144d0442989
BLAKE2b-256 25b4018e4ac32a8fed0f5f17163f198d1d47698f93c1b876db6d99efe734850a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5553f94c06c6338654f3a389974964a443d8c4214fac232a6ac075b174b4070
MD5 3f2aca1ef467948649af504792a8078d
BLAKE2b-256 a07a4762685890ba695591035f89c37ac252feb14b385af25aa4cb13ad16be31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.17-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4360ac519dc8bfaad355a06c9cfb6f0b5bc2cfb175bd1658d3d2daa437fd5797
MD5 573440c23e324880bfb6a44955cc390b
BLAKE2b-256 017afc5fe8db41124b6f4929cc7b433ff528d18b737ed03fc50e6ae546bd0f53

See more details on using hashes here.

Provenance

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