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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

didgelab-3.0.16-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (518.1 kB view details)

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

didgelab-3.0.16-cp314-cp314t-macosx_11_0_arm64.whl (249.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

didgelab-3.0.16-cp314-cp314t-macosx_10_15_x86_64.whl (249.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

didgelab-3.0.16-cp314-cp314-win_amd64.whl (240.9 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

didgelab-3.0.16-cp314-cp314-musllinux_1_2_x86_64.whl (510.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

didgelab-3.0.16-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (509.0 kB view details)

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

didgelab-3.0.16-cp314-cp314-macosx_11_0_arm64.whl (242.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

didgelab-3.0.16-cp313-cp313-win_amd64.whl (239.9 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

didgelab-3.0.16-cp313-cp313-musllinux_1_2_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

didgelab-3.0.16-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (513.1 kB view details)

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

didgelab-3.0.16-cp313-cp313-macosx_11_0_arm64.whl (242.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

didgelab-3.0.16-cp313-cp313-macosx_10_13_x86_64.whl (243.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

didgelab-3.0.16-cp312-cp312-win_amd64.whl (240.0 kB view details)

Uploaded CPython 3.12Windows x86-64

didgelab-3.0.16-cp312-cp312-win32.whl (235.7 kB view details)

Uploaded CPython 3.12Windows x86

didgelab-3.0.16-cp312-cp312-musllinux_1_2_x86_64.whl (519.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

didgelab-3.0.16-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (517.9 kB view details)

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

didgelab-3.0.16-cp312-cp312-macosx_11_0_arm64.whl (242.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

didgelab-3.0.16-cp312-cp312-macosx_10_13_x86_64.whl (243.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

didgelab-3.0.16-cp311-cp311-win32.whl (236.7 kB view details)

Uploaded CPython 3.11Windows x86

didgelab-3.0.16-cp311-cp311-musllinux_1_2_x86_64.whl (511.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

didgelab-3.0.16-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (508.7 kB view details)

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

didgelab-3.0.16-cp311-cp311-macosx_11_0_arm64.whl (242.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

didgelab-3.0.16-cp311-cp311-macosx_10_9_x86_64.whl (243.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

didgelab-3.0.16-cp310-cp310-win_amd64.whl (241.3 kB view details)

Uploaded CPython 3.10Windows x86-64

didgelab-3.0.16-cp310-cp310-win32.whl (237.1 kB view details)

Uploaded CPython 3.10Windows x86

didgelab-3.0.16-cp310-cp310-musllinux_1_2_x86_64.whl (495.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

didgelab-3.0.16-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (492.4 kB view details)

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

didgelab-3.0.16-cp310-cp310-macosx_11_0_arm64.whl (242.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

didgelab-3.0.16-cp310-cp310-macosx_10_9_x86_64.whl (243.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

didgelab-3.0.16-cp39-cp39-win_amd64.whl (241.4 kB view details)

Uploaded CPython 3.9Windows x86-64

didgelab-3.0.16-cp39-cp39-win32.whl (237.2 kB view details)

Uploaded CPython 3.9Windows x86

didgelab-3.0.16-cp39-cp39-musllinux_1_2_x86_64.whl (493.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

didgelab-3.0.16-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (490.3 kB view details)

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

didgelab-3.0.16-cp39-cp39-macosx_11_0_arm64.whl (243.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

didgelab-3.0.16-cp39-cp39-macosx_10_9_x86_64.whl (244.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16.tar.gz
Algorithm Hash digest
SHA256 ed840ef933ff803a039e496593ecac9228449b6bdc0b71498782b0cad4f27a67
MD5 984625567dfd444f3a90b9e64146237e
BLAKE2b-256 10fc2b6a263fef76c30955ccdd1a22320d7e8b1387f5da9ec0c3ea99616b8bf9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7f689de2022b1f2ee88629afbb4b8675c3a1a3e47ebeeb762c44aa8510e95787
MD5 b5244dd68b41e6837a7ea0112a9cd5d6
BLAKE2b-256 ad271d77daf48877c8058ea4bc6aa4fcfda02f7b2a1138cd2184ee0400472a51

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 18767a14a0f5bd67632cf71ee1269946209af9bba87f9e1ea00c7ee5fdf96d16
MD5 3220c26dc8ddba77d809c17b3c336b7e
BLAKE2b-256 930e4743379ff86e849436f38b831179f53e9e8a4f84dfb41cdd8d8a34189b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c23b4b9b060862e26d9866c100704f49579caccb864971daee1039bd4dff6c33
MD5 a4adb2b52cdf20dad58a9fc0a6f9252b
BLAKE2b-256 ba95d2cbbf7db2a5923abc957d500f863e2053bb4587eb15082ed7e3c8fe753c

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.16-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.16-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.16-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b47dae33967a9aaea4de6975376b37bc04954e620d33b2125eaf1b4878119c5b
MD5 2576eee128a97b5327ac456db5eae11a
BLAKE2b-256 5af133c3419496ef6d822552a0441a9a10657bab6d008994fb90904867272888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1081050ec89487f1f3ac828b72f7ebe9937eec3817510345f7c1befd8bf82add
MD5 786101f01e9b324af5b9c2a8e8c29ce9
BLAKE2b-256 d8762cacd155ea5ad42660161e72d57c3c40df8a94c59ecce3430bc792667a22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c6caf154ceaec617a608f8142b7d434e9e6557843a524d411341b237411fa4e
MD5 db64b0c638c900f8a30e8bfbd8a06fcc
BLAKE2b-256 0bb32d2fb05d7911c302733f524b6c6028d7e6475e9adee06910954a36fddda3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 31fbaf551005c9e7887294135d512b06d96c0e73d71366de4750e63b31205050
MD5 53bd9afb1c04fad36195f07b128d19e8
BLAKE2b-256 c13415f4ea3740105b3d973d1e37e97c418144452d8ee8f392702d1b1bab42b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 068d87f44c53602338a41636cbbf2b54c6a7b8ba777127252555b92d48be065f
MD5 2f39872348720054abdfc8ba123e7a1c
BLAKE2b-256 0004af15cddcad7ce1d851c6b9314d0540c8fe66ec7b657134fc23dad6f2fc51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8a25d8983ffbc0a4ad5ad2dab21dad4a43137a092fd2fc371955724845d8c1a
MD5 da786e6d5e8ca2c8efc2d643e0c13f12
BLAKE2b-256 2ea9a397db9384374698723c20897360089bffc0712091e34c45c1880aec664a

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.16-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.16-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.16-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d12401d4f700e4aeb15827f3449a23eb4c102984bc47fa9f5c80571b0df50b92
MD5 558ebbd575c847d035e4e362506ea490
BLAKE2b-256 730414127639bf204c94000fa8287fcaabff0d32dee71c2a29ec202973d69ee7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f77daebedfcf22481408ca8bed59a51bc4aee6b65900a0d4b91c2c90dcd830a
MD5 ff527adcfb1406cb9497f6ca0e1af248
BLAKE2b-256 ad82852b833ed07e7f93c212a0090901e07c1848cc2f895bb11b2dc01a9f7648

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6c128bde24c21ff92a33c0903214b617b2d12151ee4f57816fcdfa2ac00af403
MD5 14340169b63fe3dcc2a65ca2df403a4a
BLAKE2b-256 740701c6a0873099d7be552c2031bcd9e539f660d8f87ea8100db17e0c7972e3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5651dedf7a6d0eed4c7c246fbaa7e45d17b748122d713168a892f2484357b119
MD5 6a94d98a482a7fc6ad0367c04abbbbde
BLAKE2b-256 1fe1669345f33a12a22c0e106669a2be0b9ce0916181ef14eaacccc3e0f8732b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0ad1e24eab48a5a15beded5b0bed2c375a05c3f1046bf6e11a0faffac52dd24c
MD5 f447cd1ab447da8878bdc4686252c126
BLAKE2b-256 278d9fa3c168b932690869365b6ca045a8e737cd290a16661fcf48953253f2be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2c6357593f8746b171aaa2ba5d4c8b6319eb1b2caebaaba9a912632b9167ce5
MD5 c6e26bb52262ec34d74c224527aac8d6
BLAKE2b-256 0a1079c6859b07e8a7495f4cd3f3aceb18389bb9757d8ee9737dc078f7435936

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.16-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.16-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.16-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9f75fe2584b96eaa9798bc26ab7504df0b862146ad012a40d4dedae5689d4d6c
MD5 c6b37d1997ba3f19b6a7c48dffb43f84
BLAKE2b-256 961b4055692f8007d5ff67489c72de8408b5801c38e87d7ebeb7d8c8857957f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7c259813aa1564b14d1c127809d3c78609dd452bccee09dc2edbf167b2a4e83
MD5 6c86fb87b188de2cb539e28ab8776d21
BLAKE2b-256 08f37051dbd871c275af2423c9e06f8025f60d303b0a3025dea8b098cf9c0121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a7b658621ba2a3d75944a6cc586d3a4a6ac2706e71c9bb8b092df11712360f5e
MD5 1232f63412da7a5c0ea66e949c31689f
BLAKE2b-256 f0eb71adf07727b4d4bfded58e45286c128e0074369004f1facf4e43aefb3f41

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e8b9ab5d1450980c3f4e7453e0e5f72807d0364932ed0817450369f34eaf5739
MD5 1b93c94b7a11826f693503b71454cd4c
BLAKE2b-256 359c41e5298d29dd5a8629b3f79e0dbc9755fec7ee4078f14d783932a84216d4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2dc7da586fe91a9abb022a6089fa0aafb114df53620db2b47906f12e39d36756
MD5 b2b25a4f8ad87196c7ca99729fb930d3
BLAKE2b-256 222f8f31ba91ab6620f1e04ecbe0236bd7d6c25d4a87a37b70f476a206e79a42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce6b8cf76a3e4b63481cc6635d9565168d7bcd8851ffc64884e2d386ded67a36
MD5 a03c79b07ade3ab3170b9fcaf5090c63
BLAKE2b-256 ae4e33232404cbd894501e57eb7a3438f9360ecc9784277437c44c854b5cf56a

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.16-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.16-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.16-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2420cbb604089e475db5f5249c4126e3e4b3fc7ab187e0f677c182f1c6a8ea7c
MD5 661659498bb3c981443c90ad1b837092
BLAKE2b-256 f11f70617943dc28d7c4d4d6f1805bc181a65c0b5f0c148bcee9e5a2891e99b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e0bc37a939af6471b31169d6b40d8827f7748d6deb6f73847bfd84d3f8945ab
MD5 62b80fa607c90350d7123ab87bf6db1a
BLAKE2b-256 1c6c7d62d89c6efdeebf73513b4371eed059659da173c692c09252956ff771c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d269b2cc9ca32eb8c215f6e8552f9fa1dec52a81eca9fb2c15db4ac4c3bca603
MD5 0456e0c984372451bd10a2cb7cd80d74
BLAKE2b-256 e4df48cc0d966c7543b3882fc20618ed152fc0b2fb3e85a7f4576928d9e38d1b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a05e3acca280c453dad2e090019ca59ab307c5529ec5ec6511bcc9383274729
MD5 2aa9f7bee250ca55fcdfae093de5295f
BLAKE2b-256 c2a5c129136bbbe75b791ca4321cc435a76b1cbbdf229781ef453e822091fe44

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b8be6741abb593ab06efb2b4fc0861ecfefcb87e9f485f3622c2f54a9f51435f
MD5 31ab4be8a2a709483f525bb68c242a3e
BLAKE2b-256 62a003c9a07a42a33938977c76251278e889aa346ea85c0a79071c51ab2819e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af69786fada6c3a36ce9e020b54d033c6a76551dd16885b3fca34825bd1a7dec
MD5 7378c3513437a43583e864b2fd4892c1
BLAKE2b-256 1e3ada224b69ecf6723caf4d5081c08433d3b125864961517e367bedcce08dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.16-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.16-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.16-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eb7902526687823ba67b21726b65213cec318738a4ecd4b471aa679bcf6b2b68
MD5 338dde4a408d08f317c7ff85b49cd4a2
BLAKE2b-256 9bdc391f31142fcd82576d78bde11d8b3f9d4860db9c01ef86d09d6ef45ff567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6190746b941a7c4945cc57f86113bf29120cfe911c2d593d6057d5f96f7f306
MD5 9a77ef7f60111bfb036a8ed87cb2cae6
BLAKE2b-256 5cb62eed50eb88c0f71ff44a1677315d0874b493b4ad5957bffbc5bb3d9e0d9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c69596b8a9bc7f6b10e7d93dbbafd1747dfdbc7e142abd946c458a9c63b5f39b
MD5 43d45140f379a1c6d397ae72a3e5fac6
BLAKE2b-256 dd5c402d367fa7802bd5a921852a57f258af5c2c0ee23a8eecf68112c26b061a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a06893b3175b08031df9e6f144565467e2e1d58a321d20802a3c4c4a20d9f0b9
MD5 957e821d87d20d3132fc5714444cb81b
BLAKE2b-256 14e18e0f5a39f945134a0456c7fa2d32d496dc6e6d471a2fbd78209c7aceea2c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 066a55af0cbf88aaf2f54d5fc9d862c8149babc50ed53eb0983818f07a8594fd
MD5 980e9933790d716a41f60f9f3af800ec
BLAKE2b-256 5a6a5dbfb6edd81f9a5db851830e4eccf4c4300b9f2788710a7b155b90378344

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9af7f1d34867928e09bdf33c2365e0203226bd6ca024b6d33636ce5455e7cb18
MD5 02f8a62378a3b9fbff1260573f2d3cd3
BLAKE2b-256 d62ccd63af52fd5686bf17397e2c8921467be2c6c4e19b3d96041114c0aa351c

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.16-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.16-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.16-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fedb4f8184f5e772256791a4b46f1ae0b19d14eae98724477d1674662c326a3b
MD5 97bfec8c42239d588c1f3b02432e3cb5
BLAKE2b-256 06b84899721ecafbb15aec677d2c329cf2f6dc01165d4b1311b730351153e0af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b081aca1274cc87d8935ac744cb0ba869fc22cb0971931ee41f3a45fe38c9dc7
MD5 b388e49bb0df502bf676b7c3b4d95945
BLAKE2b-256 f3dce4b80c4a38bc2055fb39382e02ed3847879225ceb2b075eee0fdc697def1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12a68d9bd7a88f95208269e2d5276d64e6f16900504491053afdd7b1b1e2e121
MD5 24ed2f759d51bcdbfeab6b57746e0df7
BLAKE2b-256 9214a724d21509ffe55e005dbee6dc8d8f286b78e25d2992bbc65c5362f16fa9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c74ba3dad1e2b378a33a6504284a30ce2f7812bf0f8ea374590e8931cee078f2
MD5 140aae76c6e5017d217fa7e940254d0e
BLAKE2b-256 f1e0fdafba98eecbe5701dae7bd1fde607f004e5cac0e5420b38dba4e39110de

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for didgelab-3.0.16-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ced7b9167fbda8528491396a6bbf067da4fb69ba135bb3faedf485bdfc98c32e
MD5 46822c7f9f81ba4fafd6ec5708f7313c
BLAKE2b-256 4652d56c8ef85fcf8e3bbcb1e304785179caaec08711fc242ca4692ab6f028bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e303d0c44d523ac16cb8270d192e0f8bfd84168f20e11c247a526f36c7b10e3b
MD5 1312b3a063636f52430190f253e3f515
BLAKE2b-256 20f88bcca2eda74497ac31e2ee41b1647a93daeeccf3473e047babdb9743bad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for didgelab-3.0.16-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.16-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.16-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d0b66514bad4712cf01ef6f1dc91fc1a11c07f0d34630646b7c1dd64d807659b
MD5 833ef61faca7bca2adfac9472a6cab1d
BLAKE2b-256 9350be254a55cb6753c11b201e1bea2d4fd4cc17ddc86e2a57aa75dee7ca2bf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae262feed148f4aacfaaf3b3219858885f2c58ec08aeb95ac2a51a7ae9b446de
MD5 b9f7dc84a42bda027708cb4e5515a005
BLAKE2b-256 cd2c0dfb8a3424274306164c0036327022466acfd6f7e7cdc0285304d791f207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for didgelab-3.0.16-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60997d3ee92f25e11e890c09fe46d7708665650dbf60d99c48d86acca0d769d5
MD5 fd4d937e2dd832436939a02f1277c954
BLAKE2b-256 190ccda288a8029e187b1bc4e8cdd0b11b67d7471ba91f372ad5eb8b558e51d9

See more details on using hashes here.

Provenance

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